262 lines
9.9 KiB
C++
262 lines
9.9 KiB
C++
/**
|
|
* 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/pinpoint/PinpointRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Http
|
|
{
|
|
class URI;
|
|
} //namespace Http
|
|
namespace Pinpoint
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_PINPOINT_API GetJourneyExecutionMetricsRequest : public PinpointRequest
|
|
{
|
|
public:
|
|
GetJourneyExecutionMetricsRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "GetJourneyExecutionMetrics"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
|
|
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the application. This identifier is displayed as
|
|
* the <b>Project ID</b> on the Amazon Pinpoint console.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline const Aws::String& GetJourneyId() const{ return m_journeyId; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline bool JourneyIdHasBeenSet() const { return m_journeyIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline void SetJourneyId(const Aws::String& value) { m_journeyIdHasBeenSet = true; m_journeyId = value; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline void SetJourneyId(Aws::String&& value) { m_journeyIdHasBeenSet = true; m_journeyId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline void SetJourneyId(const char* value) { m_journeyIdHasBeenSet = true; m_journeyId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithJourneyId(const Aws::String& value) { SetJourneyId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithJourneyId(Aws::String&& value) { SetJourneyId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the journey.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithJourneyId(const char* value) { SetJourneyId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The string that specifies which page of results to return in a paginated
|
|
* response. This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline const Aws::String& GetPageSize() const{ return m_pageSize; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline void SetPageSize(const Aws::String& value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline void SetPageSize(Aws::String&& value) { m_pageSizeHasBeenSet = true; m_pageSize = std::move(value); }
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline void SetPageSize(const char* value) { m_pageSizeHasBeenSet = true; m_pageSize.assign(value); }
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithPageSize(const Aws::String& value) { SetPageSize(value); return *this;}
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithPageSize(Aws::String&& value) { SetPageSize(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The maximum number of items to include in each page of a paginated response.
|
|
* This parameter is not supported for application, campaign, and journey
|
|
* metrics.</p>
|
|
*/
|
|
inline GetJourneyExecutionMetricsRequest& WithPageSize(const char* value) { SetPageSize(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_applicationId;
|
|
bool m_applicationIdHasBeenSet;
|
|
|
|
Aws::String m_journeyId;
|
|
bool m_journeyIdHasBeenSet;
|
|
|
|
Aws::String m_nextToken;
|
|
bool m_nextTokenHasBeenSet;
|
|
|
|
Aws::String m_pageSize;
|
|
bool m_pageSizeHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Pinpoint
|
|
} // namespace Aws
|