Interface EnvironmentOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
EnvironmentProps
- All Known Implementing Classes:
EnvironmentOptions.Jsii$Proxy
,EnvironmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:03.813Z")
@Stability(Stable)
public interface EnvironmentOptions
extends software.amazon.jsii.JsiiSerializable
Options for the Environment construct.
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.*; Monitor monitor; EnvironmentOptions environmentOptions = EnvironmentOptions.builder() .description("description") .environmentName("environmentName") .monitors(List.of(monitor)) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEnvironmentOptions
static final class
An implementation forEnvironmentOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic EnvironmentOptions.Builder
builder()
default String
The description of the environment.default String
The name of the environment.The monitors for the environment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the environment.Default: - No description.
-
getEnvironmentName
The name of the environment.Default: - A name is generated.
-
getMonitors
The monitors for the environment.Default: - No monitors.
-
builder
- Returns:
- a
EnvironmentOptions.Builder
ofEnvironmentOptions
-