/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include namespace Aws { namespace ElasticBeanstalk { namespace Model { /** *

Request to create a configuration template.

See Also:

AWS * API Reference

*/ class CreateConfigurationTemplateRequest : public ElasticBeanstalkRequest { public: AWS_ELASTICBEANSTALK_API CreateConfigurationTemplateRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateConfigurationTemplate"; } AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override; protected: AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline const Aws::String& GetApplicationName() const{ return m_applicationName; } /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; } /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; } /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); } /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); } /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline CreateConfigurationTemplateRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline CreateConfigurationTemplateRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;} /** *

The name of the Elastic Beanstalk application to associate with this * configuration template.

*/ inline CreateConfigurationTemplateRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;} /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline const Aws::String& GetTemplateName() const{ return m_templateName; } /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; } /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; } /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); } /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); } /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline CreateConfigurationTemplateRequest& WithTemplateName(const Aws::String& value) { SetTemplateName(value); return *this;} /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline CreateConfigurationTemplateRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;} /** *

The name of the configuration template.

Constraint: This name must be * unique per application.

*/ inline CreateConfigurationTemplateRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;} /** *

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

*/ inline bool SolutionStackNameHasBeenSet() const { return m_solutionStackNameHasBeenSet; } /** *

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The name of an Elastic Beanstalk solution stack (platform version) that this * configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat * 7 Java 7. A solution stack specifies the operating system, runtime, and * application server for a configuration template. It also determines the set of * configuration options as well as the possible and default values. For more * information, see Supported * Platforms in the AWS Elastic Beanstalk Developer Guide.

You * must specify SolutionStackName if you don't specify * PlatformArn, EnvironmentId, or * SourceConfiguration.

Use the * ListAvailableSolutionStacks API to obtain a list of available * solution stacks.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

*/ inline bool PlatformArnHasBeenSet() const { return m_platformArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

The Amazon Resource Name (ARN) of the custom platform. For more information, * see * Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

*

If you specify PlatformArn, then don't specify * SolutionStackName.

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

An Elastic Beanstalk configuration template to base this one on. If * specified, Elastic Beanstalk uses the configuration values from the specified * configuration template to create a new configuration.

Values specified in * OptionSettings override any values obtained from the * SourceConfiguration.

You must specify * SourceConfiguration if you don't specify PlatformArn, * EnvironmentId, or SolutionStackName.

*

Constraint: If both solution stack name and source configuration are * specified, the solution stack of the source configuration template must match * the specified solution stack name.

*/ inline const SourceConfiguration& GetSourceConfiguration() const{ return m_sourceConfiguration; } /** *

An Elastic Beanstalk configuration template to base this one on. If * specified, Elastic Beanstalk uses the configuration values from the specified * configuration template to create a new configuration.

Values specified in * OptionSettings override any values obtained from the * SourceConfiguration.

You must specify * SourceConfiguration if you don't specify PlatformArn, * EnvironmentId, or SolutionStackName.

*

Constraint: If both solution stack name and source configuration are * specified, the solution stack of the source configuration template must match * the specified solution stack name.

*/ inline bool SourceConfigurationHasBeenSet() const { return m_sourceConfigurationHasBeenSet; } /** *

An Elastic Beanstalk configuration template to base this one on. If * specified, Elastic Beanstalk uses the configuration values from the specified * configuration template to create a new configuration.

Values specified in * OptionSettings override any values obtained from the * SourceConfiguration.

You must specify * SourceConfiguration if you don't specify PlatformArn, * EnvironmentId, or SolutionStackName.

*

Constraint: If both solution stack name and source configuration are * specified, the solution stack of the source configuration template must match * the specified solution stack name.

*/ inline void SetSourceConfiguration(const SourceConfiguration& value) { m_sourceConfigurationHasBeenSet = true; m_sourceConfiguration = value; } /** *

An Elastic Beanstalk configuration template to base this one on. If * specified, Elastic Beanstalk uses the configuration values from the specified * configuration template to create a new configuration.

Values specified in * OptionSettings override any values obtained from the * SourceConfiguration.

You must specify * SourceConfiguration if you don't specify PlatformArn, * EnvironmentId, or SolutionStackName.

*

Constraint: If both solution stack name and source configuration are * specified, the solution stack of the source configuration template must match * the specified solution stack name.

*/ inline void SetSourceConfiguration(SourceConfiguration&& value) { m_sourceConfigurationHasBeenSet = true; m_sourceConfiguration = std::move(value); } /** *

An Elastic Beanstalk configuration template to base this one on. If * specified, Elastic Beanstalk uses the configuration values from the specified * configuration template to create a new configuration.

Values specified in * OptionSettings override any values obtained from the * SourceConfiguration.

You must specify * SourceConfiguration if you don't specify PlatformArn, * EnvironmentId, or SolutionStackName.

*

Constraint: If both solution stack name and source configuration are * specified, the solution stack of the source configuration template must match * the specified solution stack name.

*/ inline CreateConfigurationTemplateRequest& WithSourceConfiguration(const SourceConfiguration& value) { SetSourceConfiguration(value); return *this;} /** *

An Elastic Beanstalk configuration template to base this one on. If * specified, Elastic Beanstalk uses the configuration values from the specified * configuration template to create a new configuration.

Values specified in * OptionSettings override any values obtained from the * SourceConfiguration.

You must specify * SourceConfiguration if you don't specify PlatformArn, * EnvironmentId, or SolutionStackName.

*

Constraint: If both solution stack name and source configuration are * specified, the solution stack of the source configuration template must match * the specified solution stack name.

*/ inline CreateConfigurationTemplateRequest& WithSourceConfiguration(SourceConfiguration&& value) { SetSourceConfiguration(std::move(value)); return *this;} /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; } /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; } /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; } /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); } /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); } /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline CreateConfigurationTemplateRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;} /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline CreateConfigurationTemplateRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;} /** *

The ID of an environment whose settings you want to use to create the * configuration template. You must specify EnvironmentId if you don't * specify PlatformArn, SolutionStackName, or * SourceConfiguration.

*/ inline CreateConfigurationTemplateRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;} /** *

An optional description for this configuration.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

An optional description for this configuration.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

An optional description for this configuration.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

An optional description for this configuration.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

An optional description for this configuration.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

An optional description for this configuration.

*/ inline CreateConfigurationTemplateRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

An optional description for this configuration.

*/ inline CreateConfigurationTemplateRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

An optional description for this configuration.

*/ inline CreateConfigurationTemplateRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline const Aws::Vector& GetOptionSettings() const{ return m_optionSettings; } /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline bool OptionSettingsHasBeenSet() const { return m_optionSettingsHasBeenSet; } /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline void SetOptionSettings(const Aws::Vector& value) { m_optionSettingsHasBeenSet = true; m_optionSettings = value; } /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline void SetOptionSettings(Aws::Vector&& value) { m_optionSettingsHasBeenSet = true; m_optionSettings = std::move(value); } /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline CreateConfigurationTemplateRequest& WithOptionSettings(const Aws::Vector& value) { SetOptionSettings(value); return *this;} /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline CreateConfigurationTemplateRequest& WithOptionSettings(Aws::Vector&& value) { SetOptionSettings(std::move(value)); return *this;} /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline CreateConfigurationTemplateRequest& AddOptionSettings(const ConfigurationOptionSetting& value) { m_optionSettingsHasBeenSet = true; m_optionSettings.push_back(value); return *this; } /** *

Option values for the Elastic Beanstalk configuration, such as the instance * type. If specified, these values override the values obtained from the solution * stack or the source configuration template. For a complete list of Elastic * Beanstalk configuration options, see Option * Values in the AWS Elastic Beanstalk Developer Guide.

*/ inline CreateConfigurationTemplateRequest& AddOptionSettings(ConfigurationOptionSetting&& value) { m_optionSettingsHasBeenSet = true; m_optionSettings.push_back(std::move(value)); return *this; } /** *

Specifies the tags applied to the configuration template.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

Specifies the tags applied to the configuration template.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

Specifies the tags applied to the configuration template.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

Specifies the tags applied to the configuration template.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

Specifies the tags applied to the configuration template.

*/ inline CreateConfigurationTemplateRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

Specifies the tags applied to the configuration template.

*/ inline CreateConfigurationTemplateRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

Specifies the tags applied to the configuration template.

*/ inline CreateConfigurationTemplateRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

Specifies the tags applied to the configuration template.

*/ inline CreateConfigurationTemplateRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; Aws::String m_templateName; bool m_templateNameHasBeenSet = false; Aws::String m_solutionStackName; bool m_solutionStackNameHasBeenSet = false; Aws::String m_platformArn; bool m_platformArnHasBeenSet = false; SourceConfiguration m_sourceConfiguration; bool m_sourceConfigurationHasBeenSet = false; Aws::String m_environmentId; bool m_environmentIdHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Vector m_optionSettings; bool m_optionSettingsHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws