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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEnvironmentOptionsstatic final classAn implementation forEnvironmentOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic EnvironmentOptions.Builderbuilder()default StringThe description of the environment.default StringThe 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.BuilderofEnvironmentOptions
-