/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to change the settings for an event destination for a configuration
* set.See Also:
AWS
* API Reference
The name of the configuration set that contains the event destination to * modify.
*/ inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; } /** *The name of the configuration set that contains the event destination to * modify.
*/ inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; } /** *The name of the configuration set that contains the event destination to * modify.
*/ inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; } /** *The name of the configuration set that contains the event destination to * modify.
*/ inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); } /** *The name of the configuration set that contains the event destination to * modify.
*/ inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); } /** *The name of the configuration set that contains the event destination to * modify.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithConfigurationSetName(const Aws::String& value) { SetConfigurationSetName(value); return *this;} /** *The name of the configuration set that contains the event destination to * modify.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithConfigurationSetName(Aws::String&& value) { SetConfigurationSetName(std::move(value)); return *this;} /** *The name of the configuration set that contains the event destination to * modify.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithConfigurationSetName(const char* value) { SetConfigurationSetName(value); return *this;} /** *The name of the event destination.
*/ inline const Aws::String& GetEventDestinationName() const{ return m_eventDestinationName; } /** *The name of the event destination.
*/ inline bool EventDestinationNameHasBeenSet() const { return m_eventDestinationNameHasBeenSet; } /** *The name of the event destination.
*/ inline void SetEventDestinationName(const Aws::String& value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName = value; } /** *The name of the event destination.
*/ inline void SetEventDestinationName(Aws::String&& value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName = std::move(value); } /** *The name of the event destination.
*/ inline void SetEventDestinationName(const char* value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName.assign(value); } /** *The name of the event destination.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithEventDestinationName(const Aws::String& value) { SetEventDestinationName(value); return *this;} /** *The name of the event destination.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithEventDestinationName(Aws::String&& value) { SetEventDestinationName(std::move(value)); return *this;} /** *The name of the event destination.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithEventDestinationName(const char* value) { SetEventDestinationName(value); return *this;} /** *An object that defines the event destination.
*/ inline const EventDestinationDefinition& GetEventDestination() const{ return m_eventDestination; } /** *An object that defines the event destination.
*/ inline bool EventDestinationHasBeenSet() const { return m_eventDestinationHasBeenSet; } /** *An object that defines the event destination.
*/ inline void SetEventDestination(const EventDestinationDefinition& value) { m_eventDestinationHasBeenSet = true; m_eventDestination = value; } /** *An object that defines the event destination.
*/ inline void SetEventDestination(EventDestinationDefinition&& value) { m_eventDestinationHasBeenSet = true; m_eventDestination = std::move(value); } /** *An object that defines the event destination.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithEventDestination(const EventDestinationDefinition& value) { SetEventDestination(value); return *this;} /** *An object that defines the event destination.
*/ inline UpdateConfigurationSetEventDestinationRequest& WithEventDestination(EventDestinationDefinition&& value) { SetEventDestination(std::move(value)); return *this;} private: Aws::String m_configurationSetName; bool m_configurationSetNameHasBeenSet = false; Aws::String m_eventDestinationName; bool m_eventDestinationNameHasBeenSet = false; EventDestinationDefinition m_eventDestination; bool m_eventDestinationHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws