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-rds/include/aws/rds/model/CharacterSet.h

136 lines
4.3 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rds/RDS_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 RDS
{
namespace Model
{
/**
* <p> This data type is used as a response element in the action
* <code>DescribeDBEngineVersions</code>. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CharacterSet">AWS
* API Reference</a></p>
*/
class AWS_RDS_API CharacterSet
{
public:
CharacterSet();
CharacterSet(const Aws::Utils::Xml::XmlNode& xmlNode);
CharacterSet& 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>The name of the character set.</p>
*/
inline const Aws::String& GetCharacterSetName() const{ return m_characterSetName; }
/**
* <p>The name of the character set.</p>
*/
inline bool CharacterSetNameHasBeenSet() const { return m_characterSetNameHasBeenSet; }
/**
* <p>The name of the character set.</p>
*/
inline void SetCharacterSetName(const Aws::String& value) { m_characterSetNameHasBeenSet = true; m_characterSetName = value; }
/**
* <p>The name of the character set.</p>
*/
inline void SetCharacterSetName(Aws::String&& value) { m_characterSetNameHasBeenSet = true; m_characterSetName = std::move(value); }
/**
* <p>The name of the character set.</p>
*/
inline void SetCharacterSetName(const char* value) { m_characterSetNameHasBeenSet = true; m_characterSetName.assign(value); }
/**
* <p>The name of the character set.</p>
*/
inline CharacterSet& WithCharacterSetName(const Aws::String& value) { SetCharacterSetName(value); return *this;}
/**
* <p>The name of the character set.</p>
*/
inline CharacterSet& WithCharacterSetName(Aws::String&& value) { SetCharacterSetName(std::move(value)); return *this;}
/**
* <p>The name of the character set.</p>
*/
inline CharacterSet& WithCharacterSetName(const char* value) { SetCharacterSetName(value); return *this;}
/**
* <p>The description of the character set.</p>
*/
inline const Aws::String& GetCharacterSetDescription() const{ return m_characterSetDescription; }
/**
* <p>The description of the character set.</p>
*/
inline bool CharacterSetDescriptionHasBeenSet() const { return m_characterSetDescriptionHasBeenSet; }
/**
* <p>The description of the character set.</p>
*/
inline void SetCharacterSetDescription(const Aws::String& value) { m_characterSetDescriptionHasBeenSet = true; m_characterSetDescription = value; }
/**
* <p>The description of the character set.</p>
*/
inline void SetCharacterSetDescription(Aws::String&& value) { m_characterSetDescriptionHasBeenSet = true; m_characterSetDescription = std::move(value); }
/**
* <p>The description of the character set.</p>
*/
inline void SetCharacterSetDescription(const char* value) { m_characterSetDescriptionHasBeenSet = true; m_characterSetDescription.assign(value); }
/**
* <p>The description of the character set.</p>
*/
inline CharacterSet& WithCharacterSetDescription(const Aws::String& value) { SetCharacterSetDescription(value); return *this;}
/**
* <p>The description of the character set.</p>
*/
inline CharacterSet& WithCharacterSetDescription(Aws::String&& value) { SetCharacterSetDescription(std::move(value)); return *this;}
/**
* <p>The description of the character set.</p>
*/
inline CharacterSet& WithCharacterSetDescription(const char* value) { SetCharacterSetDescription(value); return *this;}
private:
Aws::String m_characterSetName;
bool m_characterSetNameHasBeenSet;
Aws::String m_characterSetDescription;
bool m_characterSetDescriptionHasBeenSet;
};
} // namespace Model
} // namespace RDS
} // namespace Aws