This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-pinpoint/include/aws/pinpoint/model/JourneyDateRangeKpiResponse.h

409 lines
18 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/pinpoint/Pinpoint_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/DateTime.h>
#include <aws/pinpoint/model/BaseKpiResult.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Pinpoint
{
namespace Model
{
/**
* <p>Provides the results of a query that retrieved the data for a standard
* engagement metric that applies to a journey, and provides information about that
* query.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/JourneyDateRangeKpiResponse">AWS
* API Reference</a></p>
*/
class AWS_PINPOINT_API JourneyDateRangeKpiResponse
{
public:
JourneyDateRangeKpiResponse();
JourneyDateRangeKpiResponse(Aws::Utils::Json::JsonView jsonValue);
JourneyDateRangeKpiResponse& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline JourneyDateRangeKpiResponse& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline JourneyDateRangeKpiResponse& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
/**
* <p>The unique identifier for the application that the metric applies to.</p>
*/
inline JourneyDateRangeKpiResponse& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
/**
* <p>The last date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; }
/**
* <p>The last date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; }
/**
* <p>The last date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; }
/**
* <p>The last date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); }
/**
* <p>The last date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline JourneyDateRangeKpiResponse& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;}
/**
* <p>The last date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline JourneyDateRangeKpiResponse& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;}
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline const Aws::String& GetJourneyId() const{ return m_journeyId; }
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline bool JourneyIdHasBeenSet() const { return m_journeyIdHasBeenSet; }
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline void SetJourneyId(const Aws::String& value) { m_journeyIdHasBeenSet = true; m_journeyId = value; }
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline void SetJourneyId(Aws::String&& value) { m_journeyIdHasBeenSet = true; m_journeyId = std::move(value); }
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline void SetJourneyId(const char* value) { m_journeyIdHasBeenSet = true; m_journeyId.assign(value); }
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline JourneyDateRangeKpiResponse& WithJourneyId(const Aws::String& value) { SetJourneyId(value); return *this;}
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline JourneyDateRangeKpiResponse& WithJourneyId(Aws::String&& value) { SetJourneyId(std::move(value)); return *this;}
/**
* <p>The unique identifier for the journey that the metric applies to.</p>
*/
inline JourneyDateRangeKpiResponse& WithJourneyId(const char* value) { SetJourneyId(value); return *this;}
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline const Aws::String& GetKpiName() const{ return m_kpiName; }
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline bool KpiNameHasBeenSet() const { return m_kpiNameHasBeenSet; }
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline void SetKpiName(const Aws::String& value) { m_kpiNameHasBeenSet = true; m_kpiName = value; }
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline void SetKpiName(Aws::String&& value) { m_kpiNameHasBeenSet = true; m_kpiName = std::move(value); }
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline void SetKpiName(const char* value) { m_kpiNameHasBeenSet = true; m_kpiName.assign(value); }
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline JourneyDateRangeKpiResponse& WithKpiName(const Aws::String& value) { SetKpiName(value); return *this;}
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline JourneyDateRangeKpiResponse& WithKpiName(Aws::String&& value) { SetKpiName(std::move(value)); return *this;}
/**
* <p>The name of the metric, also referred to as a <i>key performance indicator
* (KPI)</i>, that the data was retrieved for. This value describes the associated
* metric and consists of two or more terms, which are comprised of lowercase
* alphanumeric characters, separated by a hyphen. For a list of possible values,
* see the <a
* href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/analytics-standard-metrics.html">Amazon
* Pinpoint Developer Guide</a>.</p>
*/
inline JourneyDateRangeKpiResponse& WithKpiName(const char* value) { SetKpiName(value); return *this;}
/**
* <p>An array of objects that contains the results of the query. Each object
* contains the value for the metric and metadata about that value.</p>
*/
inline const BaseKpiResult& GetKpiResult() const{ return m_kpiResult; }
/**
* <p>An array of objects that contains the results of the query. Each object
* contains the value for the metric and metadata about that value.</p>
*/
inline bool KpiResultHasBeenSet() const { return m_kpiResultHasBeenSet; }
/**
* <p>An array of objects that contains the results of the query. Each object
* contains the value for the metric and metadata about that value.</p>
*/
inline void SetKpiResult(const BaseKpiResult& value) { m_kpiResultHasBeenSet = true; m_kpiResult = value; }
/**
* <p>An array of objects that contains the results of the query. Each object
* contains the value for the metric and metadata about that value.</p>
*/
inline void SetKpiResult(BaseKpiResult&& value) { m_kpiResultHasBeenSet = true; m_kpiResult = std::move(value); }
/**
* <p>An array of objects that contains the results of the query. Each object
* contains the value for the metric and metadata about that value.</p>
*/
inline JourneyDateRangeKpiResponse& WithKpiResult(const BaseKpiResult& value) { SetKpiResult(value); return *this;}
/**
* <p>An array of objects that contains the results of the query. Each object
* contains the value for the metric and metadata about that value.</p>
*/
inline JourneyDateRangeKpiResponse& WithKpiResult(BaseKpiResult&& value) { SetKpiResult(std::move(value)); return *this;}
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline JourneyDateRangeKpiResponse& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline JourneyDateRangeKpiResponse& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null for the Journey Engagement Metrics
* resource because the resource returns all results in a single page.</p>
*/
inline JourneyDateRangeKpiResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;}
/**
* <p>The first date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; }
/**
* <p>The first date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; }
/**
* <p>The first date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = value; }
/**
* <p>The first date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); }
/**
* <p>The first date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline JourneyDateRangeKpiResponse& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;}
/**
* <p>The first date and time of the date range that was used to filter the query
* results, in extended ISO 8601 format. The date range is inclusive.</p>
*/
inline JourneyDateRangeKpiResponse& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;}
private:
Aws::String m_applicationId;
bool m_applicationIdHasBeenSet;
Aws::Utils::DateTime m_endTime;
bool m_endTimeHasBeenSet;
Aws::String m_journeyId;
bool m_journeyIdHasBeenSet;
Aws::String m_kpiName;
bool m_kpiNameHasBeenSet;
BaseKpiResult m_kpiResult;
bool m_kpiResultHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
Aws::Utils::DateTime m_startTime;
bool m_startTimeHasBeenSet;
};
} // namespace Model
} // namespace Pinpoint
} // namespace Aws