This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-email/include/aws/email/model/EventDestinationAlreadyExistsException.h

136 lines
4.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/email/SES_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace SES
{
namespace Model
{
/**
* <p>Indicates that the event destination could not be created because of a naming
* conflict.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/EventDestinationAlreadyExistsException">AWS
* API Reference</a></p>
*/
class AWS_SES_API EventDestinationAlreadyExistsException
{
public:
EventDestinationAlreadyExistsException();
EventDestinationAlreadyExistsException(const Aws::Utils::Xml::XmlNode& xmlNode);
EventDestinationAlreadyExistsException& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; }
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; }
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); }
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); }
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline EventDestinationAlreadyExistsException& WithConfigurationSetName(const Aws::String& value) { SetConfigurationSetName(value); return *this;}
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline EventDestinationAlreadyExistsException& WithConfigurationSetName(Aws::String&& value) { SetConfigurationSetName(std::move(value)); return *this;}
/**
* <p>Indicates that the configuration set does not exist.</p>
*/
inline EventDestinationAlreadyExistsException& WithConfigurationSetName(const char* value) { SetConfigurationSetName(value); return *this;}
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline const Aws::String& GetEventDestinationName() const{ return m_eventDestinationName; }
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline bool EventDestinationNameHasBeenSet() const { return m_eventDestinationNameHasBeenSet; }
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline void SetEventDestinationName(const Aws::String& value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName = value; }
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline void SetEventDestinationName(Aws::String&& value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName = std::move(value); }
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline void SetEventDestinationName(const char* value) { m_eventDestinationNameHasBeenSet = true; m_eventDestinationName.assign(value); }
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline EventDestinationAlreadyExistsException& WithEventDestinationName(const Aws::String& value) { SetEventDestinationName(value); return *this;}
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline EventDestinationAlreadyExistsException& WithEventDestinationName(Aws::String&& value) { SetEventDestinationName(std::move(value)); return *this;}
/**
* <p>Indicates that the event destination does not exist.</p>
*/
inline EventDestinationAlreadyExistsException& WithEventDestinationName(const char* value) { SetEventDestinationName(value); return *this;}
private:
Aws::String m_configurationSetName;
bool m_configurationSetNameHasBeenSet;
Aws::String m_eventDestinationName;
bool m_eventDestinationNameHasBeenSet;
};
} // namespace Model
} // namespace SES
} // namespace Aws