interface ConfigurationOptionSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins.CfnConfigurationTemplatePropsMixin.ConfigurationOptionSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticbeanstalk/mixins#CfnConfigurationTemplatePropsMixin_ConfigurationOptionSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticbeanstalk.mixins.CfnConfigurationTemplatePropsMixin.ConfigurationOptionSettingProperty |
Python | aws_cdk.mixins_preview.aws_elasticbeanstalk.mixins.CfnConfigurationTemplatePropsMixin.ConfigurationOptionSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticbeanstalk » mixins » CfnConfigurationTemplatePropsMixin » ConfigurationOptionSettingProperty |
Use the ConfigurationOptionSetting property type to specify an option for an AWS Elastic Beanstalk configuration template when defining an AWS::ElasticBeanstalk::ConfigurationTemplate resource in an AWS CloudFormation template.
The ConfigurationOptionSetting property type specifies an option for an AWS Elastic Beanstalk configuration template.
The OptionSettings property of the AWS::ElasticBeanstalk::ConfigurationTemplate resource contains a list of ConfigurationOptionSetting property types.
For a list of possible namespaces and option values, see Option Values in the AWS Elastic Beanstalk Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticbeanstalk_mixins } from '@aws-cdk/mixins-preview/aws-elasticbeanstalk';
const configurationOptionSettingProperty: elasticbeanstalk_mixins.CfnConfigurationTemplatePropsMixin.ConfigurationOptionSettingProperty = {
namespace: 'namespace',
optionName: 'optionName',
resourceName: 'resourceName',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| namespace? | string | A unique namespace that identifies the option's associated AWS resource. |
| option | string | The name of the configuration option. |
| resource | string | A unique resource name for the option setting. |
| value? | string | The current value for the configuration option. |
namespace?
Type:
string
(optional)
A unique namespace that identifies the option's associated AWS resource.
optionName?
Type:
string
(optional)
The name of the configuration option.
resourceName?
Type:
string
(optional)
A unique resource name for the option setting.
Use it for a time–based scaling configuration option.
value?
Type:
string
(optional)
The current value for the configuration option.

.NET
Go
Java
Python
TypeScript