/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace PinpointSMSVoiceV2 { namespace Model { class DeleteConfigurationSetResult { public: AWS_PINPOINTSMSVOICEV2_API DeleteConfigurationSetResult(); AWS_PINPOINTSMSVOICEV2_API DeleteConfigurationSetResult(const Aws::AmazonWebServiceResult& result); AWS_PINPOINTSMSVOICEV2_API DeleteConfigurationSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline const Aws::String& GetConfigurationSetArn() const{ return m_configurationSetArn; } /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline void SetConfigurationSetArn(const Aws::String& value) { m_configurationSetArn = value; } /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline void SetConfigurationSetArn(Aws::String&& value) { m_configurationSetArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline void SetConfigurationSetArn(const char* value) { m_configurationSetArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithConfigurationSetArn(const Aws::String& value) { SetConfigurationSetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithConfigurationSetArn(Aws::String&& value) { SetConfigurationSetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithConfigurationSetArn(const char* value) { SetConfigurationSetArn(value); return *this;} /** *

The name of the deleted configuration set.

*/ inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; } /** *

The name of the deleted configuration set.

*/ inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetName = value; } /** *

The name of the deleted configuration set.

*/ inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetName = std::move(value); } /** *

The name of the deleted configuration set.

*/ inline void SetConfigurationSetName(const char* value) { m_configurationSetName.assign(value); } /** *

The name of the deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithConfigurationSetName(const Aws::String& value) { SetConfigurationSetName(value); return *this;} /** *

The name of the deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithConfigurationSetName(Aws::String&& value) { SetConfigurationSetName(std::move(value)); return *this;} /** *

The name of the deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithConfigurationSetName(const char* value) { SetConfigurationSetName(value); return *this;} /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline const Aws::Vector& GetEventDestinations() const{ return m_eventDestinations; } /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline void SetEventDestinations(const Aws::Vector& value) { m_eventDestinations = value; } /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline void SetEventDestinations(Aws::Vector&& value) { m_eventDestinations = std::move(value); } /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithEventDestinations(const Aws::Vector& value) { SetEventDestinations(value); return *this;} /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline DeleteConfigurationSetResult& WithEventDestinations(Aws::Vector&& value) { SetEventDestinations(std::move(value)); return *this;} /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline DeleteConfigurationSetResult& AddEventDestinations(const EventDestination& value) { m_eventDestinations.push_back(value); return *this; } /** *

An array of any EventDestination objects that were associated with the * deleted configuration set.

*/ inline DeleteConfigurationSetResult& AddEventDestinations(EventDestination&& value) { m_eventDestinations.push_back(std::move(value)); return *this; } /** *

The default message type of the configuration set that was deleted.

*/ inline const MessageType& GetDefaultMessageType() const{ return m_defaultMessageType; } /** *

The default message type of the configuration set that was deleted.

*/ inline void SetDefaultMessageType(const MessageType& value) { m_defaultMessageType = value; } /** *

The default message type of the configuration set that was deleted.

*/ inline void SetDefaultMessageType(MessageType&& value) { m_defaultMessageType = std::move(value); } /** *

The default message type of the configuration set that was deleted.

*/ inline DeleteConfigurationSetResult& WithDefaultMessageType(const MessageType& value) { SetDefaultMessageType(value); return *this;} /** *

The default message type of the configuration set that was deleted.

*/ inline DeleteConfigurationSetResult& WithDefaultMessageType(MessageType&& value) { SetDefaultMessageType(std::move(value)); return *this;} /** *

The default Sender ID of the configuration set that was deleted.

*/ inline const Aws::String& GetDefaultSenderId() const{ return m_defaultSenderId; } /** *

The default Sender ID of the configuration set that was deleted.

*/ inline void SetDefaultSenderId(const Aws::String& value) { m_defaultSenderId = value; } /** *

The default Sender ID of the configuration set that was deleted.

*/ inline void SetDefaultSenderId(Aws::String&& value) { m_defaultSenderId = std::move(value); } /** *

The default Sender ID of the configuration set that was deleted.

*/ inline void SetDefaultSenderId(const char* value) { m_defaultSenderId.assign(value); } /** *

The default Sender ID of the configuration set that was deleted.

*/ inline DeleteConfigurationSetResult& WithDefaultSenderId(const Aws::String& value) { SetDefaultSenderId(value); return *this;} /** *

The default Sender ID of the configuration set that was deleted.

*/ inline DeleteConfigurationSetResult& WithDefaultSenderId(Aws::String&& value) { SetDefaultSenderId(std::move(value)); return *this;} /** *

The default Sender ID of the configuration set that was deleted.

*/ inline DeleteConfigurationSetResult& WithDefaultSenderId(const char* value) { SetDefaultSenderId(value); return *this;} /** *

The time that the deleted configuration set was created in UNIX epoch time format.

*/ inline const Aws::Utils::DateTime& GetCreatedTimestamp() const{ return m_createdTimestamp; } /** *

The time that the deleted configuration set was created in UNIX epoch time format.

*/ inline void SetCreatedTimestamp(const Aws::Utils::DateTime& value) { m_createdTimestamp = value; } /** *

The time that the deleted configuration set was created in UNIX epoch time format.

*/ inline void SetCreatedTimestamp(Aws::Utils::DateTime&& value) { m_createdTimestamp = std::move(value); } /** *

The time that the deleted configuration set was created in UNIX epoch time format.

*/ inline DeleteConfigurationSetResult& WithCreatedTimestamp(const Aws::Utils::DateTime& value) { SetCreatedTimestamp(value); return *this;} /** *

The time that the deleted configuration set was created in UNIX epoch time format.

*/ inline DeleteConfigurationSetResult& WithCreatedTimestamp(Aws::Utils::DateTime&& value) { SetCreatedTimestamp(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteConfigurationSetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteConfigurationSetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteConfigurationSetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_configurationSetArn; Aws::String m_configurationSetName; Aws::Vector m_eventDestinations; MessageType m_defaultMessageType; Aws::String m_defaultSenderId; Aws::Utils::DateTime m_createdTimestamp; Aws::String m_requestId; }; } // namespace Model } // namespace PinpointSMSVoiceV2 } // namespace Aws