Interface ExtensionOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
ExtensionProps
All Known Implementing Classes:
ExtensionOptions.Jsii$Proxy, ExtensionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.583Z") @Stability(Deprecated) @Deprecated public interface ExtensionOptions extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Options for the Extension 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.*;
 Parameter parameter;
 ExtensionOptions extensionOptions = ExtensionOptions.builder()
         .description("description")
         .extensionName("extensionName")
         .latestVersionNumber(123)
         .parameters(List.of(parameter))
         .build();
 
  • Method Details

    • getDescription

      @Stability(Deprecated) @Deprecated @Nullable default String getDescription()
      Deprecated.
      (deprecated) A description of the extension.

      Default: - No description.

    • getExtensionName

      @Stability(Deprecated) @Deprecated @Nullable default String getExtensionName()
      Deprecated.
      (deprecated) The name of the extension.

      Default: - A name is generated.

    • getLatestVersionNumber

      @Stability(Deprecated) @Deprecated @Nullable default Number getLatestVersionNumber()
      Deprecated.
      (deprecated) The latest version number of the extension.

      When you create a new version, specify the most recent current version number. For example, you create version 3, enter 2 for this field.

      Default: - None.

    • getParameters

      @Stability(Deprecated) @Deprecated @Nullable default List<Parameter> getParameters()
      Deprecated.
      (deprecated) The parameters accepted for the extension.

      Default: - None.

    • builder

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