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.101.0 (build b95fe5d)", date="2024-07-05T20:26:40.510Z") @Stability(Deprecated) @Deprecated public interface EnvironmentOptions extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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.alpha.*;
 Monitor monitor;
 EnvironmentOptions environmentOptions = EnvironmentOptions.builder()
         .description("description")
         .environmentName("environmentName")
         .monitors(List.of(monitor))
         .build();
 
  • Method Details

    • getDescription

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

      Default: - No description.

    • getEnvironmentName

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

      Default: - A name is generated.

    • getMonitors

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

      Default: - No monitors.

    • builder

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