/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace ElasticBeanstalk { namespace Model { /** *

Describes the settings for a specified configuration set.

See * Also:

AWS * API Reference

*/ class DescribeConfigurationOptionsResult { public: AWS_ELASTICBEANSTALK_API DescribeConfigurationOptionsResult(); AWS_ELASTICBEANSTALK_API DescribeConfigurationOptionsResult(const Aws::AmazonWebServiceResult& result); AWS_ELASTICBEANSTALK_API DescribeConfigurationOptionsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the solution stack these configuration options belong to.

*/ inline const Aws::String& GetSolutionStackName() const{ return m_solutionStackName; } /** *

The name of the solution stack these configuration options belong to.

*/ inline void SetSolutionStackName(const Aws::String& value) { m_solutionStackName = value; } /** *

The name of the solution stack these configuration options belong to.

*/ inline void SetSolutionStackName(Aws::String&& value) { m_solutionStackName = std::move(value); } /** *

The name of the solution stack these configuration options belong to.

*/ inline void SetSolutionStackName(const char* value) { m_solutionStackName.assign(value); } /** *

The name of the solution stack these configuration options belong to.

*/ inline DescribeConfigurationOptionsResult& WithSolutionStackName(const Aws::String& value) { SetSolutionStackName(value); return *this;} /** *

The name of the solution stack these configuration options belong to.

*/ inline DescribeConfigurationOptionsResult& WithSolutionStackName(Aws::String&& value) { SetSolutionStackName(std::move(value)); return *this;} /** *

The name of the solution stack these configuration options belong to.

*/ inline DescribeConfigurationOptionsResult& WithSolutionStackName(const char* value) { SetSolutionStackName(value); return *this;} /** *

The ARN of the platform version.

*/ inline const Aws::String& GetPlatformArn() const{ return m_platformArn; } /** *

The ARN of the platform version.

*/ inline void SetPlatformArn(const Aws::String& value) { m_platformArn = value; } /** *

The ARN of the platform version.

*/ inline void SetPlatformArn(Aws::String&& value) { m_platformArn = std::move(value); } /** *

The ARN of the platform version.

*/ inline void SetPlatformArn(const char* value) { m_platformArn.assign(value); } /** *

The ARN of the platform version.

*/ inline DescribeConfigurationOptionsResult& WithPlatformArn(const Aws::String& value) { SetPlatformArn(value); return *this;} /** *

The ARN of the platform version.

*/ inline DescribeConfigurationOptionsResult& WithPlatformArn(Aws::String&& value) { SetPlatformArn(std::move(value)); return *this;} /** *

The ARN of the platform version.

*/ inline DescribeConfigurationOptionsResult& WithPlatformArn(const char* value) { SetPlatformArn(value); return *this;} /** *

A list of ConfigurationOptionDescription.

*/ inline const Aws::Vector& GetOptions() const{ return m_options; } /** *

A list of ConfigurationOptionDescription.

*/ inline void SetOptions(const Aws::Vector& value) { m_options = value; } /** *

A list of ConfigurationOptionDescription.

*/ inline void SetOptions(Aws::Vector&& value) { m_options = std::move(value); } /** *

A list of ConfigurationOptionDescription.

*/ inline DescribeConfigurationOptionsResult& WithOptions(const Aws::Vector& value) { SetOptions(value); return *this;} /** *

A list of ConfigurationOptionDescription.

*/ inline DescribeConfigurationOptionsResult& WithOptions(Aws::Vector&& value) { SetOptions(std::move(value)); return *this;} /** *

A list of ConfigurationOptionDescription.

*/ inline DescribeConfigurationOptionsResult& AddOptions(const ConfigurationOptionDescription& value) { m_options.push_back(value); return *this; } /** *

A list of ConfigurationOptionDescription.

*/ 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 m_options; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws