/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Indicates that the configuration set could not be created because of a naming
* conflict.See Also:
AWS
* API Reference
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