/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SNS { namespace Model { /** *

The input for the GetSMSAttributes request.

See * Also:

AWS * API Reference

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

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline const Aws::Vector& GetAttributes() const{ return m_attributes; } /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; } /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline void SetAttributes(const Aws::Vector& value) { m_attributesHasBeenSet = true; m_attributes = value; } /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline void SetAttributes(Aws::Vector&& value) { m_attributesHasBeenSet = true; m_attributes = std::move(value); } /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline GetSMSAttributesRequest& WithAttributes(const Aws::Vector& value) { SetAttributes(value); return *this;} /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline GetSMSAttributesRequest& WithAttributes(Aws::Vector&& value) { SetAttributes(std::move(value)); return *this;} /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline GetSMSAttributesRequest& AddAttributes(const Aws::String& value) { m_attributesHasBeenSet = true; m_attributes.push_back(value); return *this; } /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline GetSMSAttributesRequest& AddAttributes(Aws::String&& value) { m_attributesHasBeenSet = true; m_attributes.push_back(std::move(value)); return *this; } /** *

A list of the individual attribute names, such as * MonthlySpendLimit, for which you want values.

For all * attribute names, see SetSMSAttributes.

*

If you don't use this parameter, Amazon SNS returns all SMS attributes.

*/ inline GetSMSAttributesRequest& AddAttributes(const char* value) { m_attributesHasBeenSet = true; m_attributes.push_back(value); return *this; } private: Aws::Vector m_attributes; bool m_attributesHasBeenSet = false; }; } // namespace Model } // namespace SNS } // namespace Aws