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.98.0 (build 00b106d)", date="2024-05-08T21:35:02.314Z") @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();
 
  • Method Details

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the environment.

      Default: - No description.

    • getEnvironmentName

      @Stability(Stable) @Nullable default String getEnvironmentName()
      The name of the environment.

      Default: - A name is generated.

    • getMonitors

      @Stability(Stable) @Nullable default List<Monitor> getMonitors()
      The monitors for the environment.

      Default: - No monitors.

    • builder

      @Stability(Stable) static EnvironmentOptions.Builder builder()
      Returns:
      a EnvironmentOptions.Builder of EnvironmentOptions