Interface CfnEnvironment.OptionSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironment.OptionSettingProperty.Jsii$Proxy
- Enclosing class:
- CfnEnvironment
@Stability(Stable)
public static interface CfnEnvironment.OptionSettingProperty
extends software.amazon.jsii.JsiiSerializable
Use the
OptionSetting property type to specify an option for an AWS Elastic Beanstalk environment when defining an AWS::ElasticBeanstalk::Environment resource in an AWS CloudFormation template.
The OptionSetting property type specifies an option for an AWS Elastic Beanstalk environment.
The OptionSettings property of the AWS::ElasticBeanstalk::Environment resource contains a list of OptionSetting 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 software.amazon.awscdk.services.elasticbeanstalk.*;
OptionSettingProperty optionSettingProperty = OptionSettingProperty.builder()
.namespace("namespace")
.optionName("optionName")
// the properties below are optional
.resourceName("resourceName")
.value("value")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironment.OptionSettingPropertystatic final classAn implementation forCfnEnvironment.OptionSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNamespace
A unique namespace that identifies the option's associated AWS resource. -
getOptionName
The name of the configuration option. -
getResourceName
A unique resource name for the option setting.Use it for a time–based scaling configuration option.
-
getValue
The current value for the configuration option. -
builder
-