@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.306Z") @Stability(value=Stable) public interface CfnEnvironmentProps extends software.amazon.jsii.JsiiSerializable
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.appconfig.*;
CfnEnvironmentProps cfnEnvironmentProps = CfnEnvironmentProps.builder()
.applicationId("applicationId")
.name("name")
// the properties below are optional
.description("description")
.monitors(List.of(MonitorsProperty.builder()
.alarmArn("alarmArn")
.alarmRoleArn("alarmRoleArn")
.build()))
.tags(List.of(TagsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEnvironmentProps.Builder
A builder for
CfnEnvironmentProps |
static class |
CfnEnvironmentProps.Jsii$Proxy
An implementation for
CfnEnvironmentProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEnvironmentProps.Builder |
builder() |
String |
getApplicationId()
The application ID.
|
default String |
getDescription()
A description of the environment.
|
default Object |
getMonitors()
Amazon CloudWatch alarms to monitor during the deployment process.
|
String |
getName()
A name for the environment.
|
default List<CfnEnvironment.TagsProperty> |
getTags()
Metadata to assign to the environment.
|
@Stability(value=Stable) @NotNull String getApplicationId()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getMonitors()
@Stability(value=Stable) @Nullable default List<CfnEnvironment.TagsProperty> getTags()
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
@Stability(value=Stable) static CfnEnvironmentProps.Builder builder()
CfnEnvironmentProps.Builder of CfnEnvironmentPropsCopyright © 2022. All rights reserved.