/** * 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 Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace SES { namespace Model { /** *

Indicates that the configuration set could not be created because of a naming * conflict.

See Also:

AWS * API Reference

*/ class ConfigurationSetAlreadyExistsException { public: AWS_SES_API ConfigurationSetAlreadyExistsException(); AWS_SES_API ConfigurationSetAlreadyExistsException(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_SES_API ConfigurationSetAlreadyExistsException& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

Indicates that the configuration set does not exist.

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

Indicates that the configuration set does not exist.

*/ inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; } /** *

Indicates that the configuration set does not exist.

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

Indicates that the configuration set does not exist.

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

Indicates that the configuration set does not exist.

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

Indicates that the configuration set does not exist.

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

Indicates that the configuration set does not exist.

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

Indicates that the configuration set does not exist.

*/ inline ConfigurationSetAlreadyExistsException& WithConfigurationSetName(const char* value) { SetConfigurationSetName(value); return *this;} private: Aws::String m_configurationSetName; bool m_configurationSetNameHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws