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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

The name of the configuration set the event destination was deleted from.

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

The name of the configuration set the event destination was deleted from.

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

The name of the configuration set the event destination was deleted from.

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

The name of the configuration set the event destination was deleted from.

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

The name of the configuration set the event destination was deleted from.

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

The name of the configuration set the event destination was deleted from.

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

The name of the configuration set the event destination was deleted from.

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

The event destination object that was deleted.

*/ inline const EventDestination& GetEventDestination() const{ return m_eventDestination; } /** *

The event destination object that was deleted.

*/ inline void SetEventDestination(const EventDestination& value) { m_eventDestination = value; } /** *

The event destination object that was deleted.

*/ inline void SetEventDestination(EventDestination&& value) { m_eventDestination = std::move(value); } /** *

The event destination object that was deleted.

*/ inline DeleteEventDestinationResult& WithEventDestination(const EventDestination& value) { SetEventDestination(value); return *this;} /** *

The event destination object that was deleted.

*/ inline DeleteEventDestinationResult& WithEventDestination(EventDestination&& value) { SetEventDestination(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 DeleteEventDestinationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteEventDestinationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteEventDestinationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_configurationSetArn; Aws::String m_configurationSetName; EventDestination m_eventDestination; Aws::String m_requestId; }; } // namespace Model } // namespace PinpointSMSVoiceV2 } // namespace Aws