180 lines
6.4 KiB
C++
180 lines
6.4 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 Pinpoint
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_PINPOINT_API GetCampaignVersionRequest : public PinpointRequest
|
|
{
|
|
public:
|
|
GetCampaignVersionRequest();
|
|
|
|
// 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 "GetCampaignVersion"; }
|
|
|
|
Aws::String SerializePayload() 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 GetCampaignVersionRequest& 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 GetCampaignVersionRequest& 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 GetCampaignVersionRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline const Aws::String& GetCampaignId() const{ return m_campaignId; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline bool CampaignIdHasBeenSet() const { return m_campaignIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline void SetCampaignId(const Aws::String& value) { m_campaignIdHasBeenSet = true; m_campaignId = value; }
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline void SetCampaignId(Aws::String&& value) { m_campaignIdHasBeenSet = true; m_campaignId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline void SetCampaignId(const char* value) { m_campaignIdHasBeenSet = true; m_campaignId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline GetCampaignVersionRequest& WithCampaignId(const Aws::String& value) { SetCampaignId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline GetCampaignVersionRequest& WithCampaignId(Aws::String&& value) { SetCampaignId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique identifier for the campaign.</p>
|
|
*/
|
|
inline GetCampaignVersionRequest& WithCampaignId(const char* value) { SetCampaignId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline const Aws::String& GetVersion() const{ return m_version; }
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline GetCampaignVersionRequest& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline GetCampaignVersionRequest& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique version number (Version property) for the campaign version.</p>
|
|
*/
|
|
inline GetCampaignVersionRequest& WithVersion(const char* value) { SetVersion(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_applicationId;
|
|
bool m_applicationIdHasBeenSet;
|
|
|
|
Aws::String m_campaignId;
|
|
bool m_campaignIdHasBeenSet;
|
|
|
|
Aws::String m_version;
|
|
bool m_versionHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Pinpoint
|
|
} // namespace Aws
|