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-elasticbeanstalk/include/aws/elasticbeanstalk/model/DescribeConfigurationOptionsResult.h

181 lines
6.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/elasticbeanstalk/model/ResponseMetadata.h>
#include <aws/elasticbeanstalk/model/ConfigurationOptionDescription.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace ElasticBeanstalk
{
namespace Model
{
/**
* <p>Describes the settings for a specified configuration set.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ConfigurationOptionsDescription">AWS
* API Reference</a></p>
*/
class AWS_ELASTICBEANSTALK_API DescribeConfigurationOptionsResult
{
public:
DescribeConfigurationOptionsResult();
DescribeConfigurationOptionsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
DescribeConfigurationOptionsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline const Aws::String& GetSolutionStackName() const{ return m_solutionStackName; }
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline void SetSolutionStackName(const Aws::String& value) { m_solutionStackName = value; }
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline void SetSolutionStackName(Aws::String&& value) { m_solutionStackName = std::move(value); }
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline void SetSolutionStackName(const char* value) { m_solutionStackName.assign(value); }
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline DescribeConfigurationOptionsResult& WithSolutionStackName(const Aws::String& value) { SetSolutionStackName(value); return *this;}
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline DescribeConfigurationOptionsResult& WithSolutionStackName(Aws::String&& value) { SetSolutionStackName(std::move(value)); return *this;}
/**
* <p>The name of the solution stack these configuration options belong to.</p>
*/
inline DescribeConfigurationOptionsResult& WithSolutionStackName(const char* value) { SetSolutionStackName(value); return *this;}
/**
* <p>The ARN of the platform version.</p>
*/
inline const Aws::String& GetPlatformArn() const{ return m_platformArn; }
/**
* <p>The ARN of the platform version.</p>
*/
inline void SetPlatformArn(const Aws::String& value) { m_platformArn = value; }
/**
* <p>The ARN of the platform version.</p>
*/
inline void SetPlatformArn(Aws::String&& value) { m_platformArn = std::move(value); }
/**
* <p>The ARN of the platform version.</p>
*/
inline void SetPlatformArn(const char* value) { m_platformArn.assign(value); }
/**
* <p>The ARN of the platform version.</p>
*/
inline DescribeConfigurationOptionsResult& WithPlatformArn(const Aws::String& value) { SetPlatformArn(value); return *this;}
/**
* <p>The ARN of the platform version.</p>
*/
inline DescribeConfigurationOptionsResult& WithPlatformArn(Aws::String&& value) { SetPlatformArn(std::move(value)); return *this;}
/**
* <p>The ARN of the platform version.</p>
*/
inline DescribeConfigurationOptionsResult& WithPlatformArn(const char* value) { SetPlatformArn(value); return *this;}
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline const Aws::Vector<ConfigurationOptionDescription>& GetOptions() const{ return m_options; }
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline void SetOptions(const Aws::Vector<ConfigurationOptionDescription>& value) { m_options = value; }
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline void SetOptions(Aws::Vector<ConfigurationOptionDescription>&& value) { m_options = std::move(value); }
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline DescribeConfigurationOptionsResult& WithOptions(const Aws::Vector<ConfigurationOptionDescription>& value) { SetOptions(value); return *this;}
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline DescribeConfigurationOptionsResult& WithOptions(Aws::Vector<ConfigurationOptionDescription>&& value) { SetOptions(std::move(value)); return *this;}
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline DescribeConfigurationOptionsResult& AddOptions(const ConfigurationOptionDescription& value) { m_options.push_back(value); return *this; }
/**
* <p> A list of <a>ConfigurationOptionDescription</a>. </p>
*/
inline DescribeConfigurationOptionsResult& AddOptions(ConfigurationOptionDescription&& value) { m_options.push_back(std::move(value)); return *this; }
inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
inline DescribeConfigurationOptionsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline DescribeConfigurationOptionsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
private:
Aws::String m_solutionStackName;
Aws::String m_platformArn;
Aws::Vector<ConfigurationOptionDescription> m_options;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace ElasticBeanstalk
} // namespace Aws