/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the settings for a specified configuration set.See
* Also:
AWS
* API Reference
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::VectorA list of ConfigurationOptionDescription.
*/ inline void SetOptions(const Aws::VectorA list of ConfigurationOptionDescription.
*/ inline void SetOptions(Aws::VectorA list of ConfigurationOptionDescription.
*/ inline DescribeConfigurationOptionsResult& WithOptions(const Aws::VectorA list of ConfigurationOptionDescription.
*/ inline DescribeConfigurationOptionsResult& WithOptions(Aws::VectorA 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