/** * 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 SNS { namespace Model { /** *

Input for GetPlatformApplicationAttributes action.

See Also:

* AWS * API Reference

*/ class GetPlatformApplicationAttributesRequest : public SNSRequest { public: AWS_SNS_API GetPlatformApplicationAttributesRequest(); // 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 "GetPlatformApplicationAttributes"; } AWS_SNS_API Aws::String SerializePayload() const override; protected: AWS_SNS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline const Aws::String& GetPlatformApplicationArn() const{ return m_platformApplicationArn; } /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline bool PlatformApplicationArnHasBeenSet() const { return m_platformApplicationArnHasBeenSet; } /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline void SetPlatformApplicationArn(const Aws::String& value) { m_platformApplicationArnHasBeenSet = true; m_platformApplicationArn = value; } /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline void SetPlatformApplicationArn(Aws::String&& value) { m_platformApplicationArnHasBeenSet = true; m_platformApplicationArn = std::move(value); } /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline void SetPlatformApplicationArn(const char* value) { m_platformApplicationArnHasBeenSet = true; m_platformApplicationArn.assign(value); } /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline GetPlatformApplicationAttributesRequest& WithPlatformApplicationArn(const Aws::String& value) { SetPlatformApplicationArn(value); return *this;} /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline GetPlatformApplicationAttributesRequest& WithPlatformApplicationArn(Aws::String&& value) { SetPlatformApplicationArn(std::move(value)); return *this;} /** *

PlatformApplicationArn for GetPlatformApplicationAttributesInput.

*/ inline GetPlatformApplicationAttributesRequest& WithPlatformApplicationArn(const char* value) { SetPlatformApplicationArn(value); return *this;} private: Aws::String m_platformApplicationArn; bool m_platformApplicationArnHasBeenSet = false; }; } // namespace Model } // namespace SNS } // namespace Aws