/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Pinpoint { namespace Model { /** */ class GetSegmentVersionRequest : public PinpointRequest { public: AWS_PINPOINT_API GetSegmentVersionRequest(); // 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 "GetSegmentVersion"; } AWS_PINPOINT_API Aws::String SerializePayload() const override; /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline const Aws::String& GetApplicationId() const{ return m_applicationId; } /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; } /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; } /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); } /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); } /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline GetSegmentVersionRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;} /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline GetSegmentVersionRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;} /** *

The unique identifier for the application. This identifier is displayed as * the Project ID on the Amazon Pinpoint console.

*/ inline GetSegmentVersionRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;} /** *

The unique identifier for the segment.

*/ inline const Aws::String& GetSegmentId() const{ return m_segmentId; } /** *

The unique identifier for the segment.

*/ inline bool SegmentIdHasBeenSet() const { return m_segmentIdHasBeenSet; } /** *

The unique identifier for the segment.

*/ inline void SetSegmentId(const Aws::String& value) { m_segmentIdHasBeenSet = true; m_segmentId = value; } /** *

The unique identifier for the segment.

*/ inline void SetSegmentId(Aws::String&& value) { m_segmentIdHasBeenSet = true; m_segmentId = std::move(value); } /** *

The unique identifier for the segment.

*/ inline void SetSegmentId(const char* value) { m_segmentIdHasBeenSet = true; m_segmentId.assign(value); } /** *

The unique identifier for the segment.

*/ inline GetSegmentVersionRequest& WithSegmentId(const Aws::String& value) { SetSegmentId(value); return *this;} /** *

The unique identifier for the segment.

*/ inline GetSegmentVersionRequest& WithSegmentId(Aws::String&& value) { SetSegmentId(std::move(value)); return *this;} /** *

The unique identifier for the segment.

*/ inline GetSegmentVersionRequest& WithSegmentId(const char* value) { SetSegmentId(value); return *this;} /** *

The unique version number (Version property) for the campaign version.

*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *

The unique version number (Version property) for the campaign version.

*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *

The unique version number (Version property) for the campaign version.

*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *

The unique version number (Version property) for the campaign version.

*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *

The unique version number (Version property) for the campaign version.

*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *

The unique version number (Version property) for the campaign version.

*/ inline GetSegmentVersionRequest& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *

The unique version number (Version property) for the campaign version.

*/ inline GetSegmentVersionRequest& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *

The unique version number (Version property) for the campaign version.

*/ inline GetSegmentVersionRequest& WithVersion(const char* value) { SetVersion(value); return *this;} private: Aws::String m_applicationId; bool m_applicationIdHasBeenSet = false; Aws::String m_segmentId; bool m_segmentIdHasBeenSet = false; Aws::String m_version; bool m_versionHasBeenSet = false; }; } // namespace Model } // namespace Pinpoint } // namespace Aws