@Stability(value=Stable)
public static interface CfnEnvironment.OptionSettingProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEnvironment.OptionSettingProperty.Builder
A builder for
CfnEnvironment.OptionSettingProperty |
static class |
CfnEnvironment.OptionSettingProperty.Jsii$Proxy
An implementation for
CfnEnvironment.OptionSettingProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEnvironment.OptionSettingProperty.Builder |
builder() |
String |
getNamespace()
A unique namespace that identifies the option's associated AWS resource.
|
String |
getOptionName()
The name of the configuration option.
|
default String |
getResourceName()
A unique resource name for the option setting.
|
default String |
getValue()
The current value for the configuration option.
|
@Stability(value=Stable) @NotNull String getNamespace()
@Stability(value=Stable) @NotNull String getOptionName()
@Stability(value=Stable) @Nullable default String getResourceName()
Use it for a time–based scaling configuration option.
@Stability(value=Stable) @Nullable default String getValue()
@Stability(value=Stable) static CfnEnvironment.OptionSettingProperty.Builder builder()
Copyright © 2022. All rights reserved.