Interface ExtensionAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ExtensionAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-27T17:01:56.666Z") @Stability(Stable) public interface ExtensionAttributes extends software.amazon.jsii.JsiiSerializable
Attributes of an existing AWS AppConfig extension to import.

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.*;
 Action action;
 ExtensionAttributes extensionAttributes = ExtensionAttributes.builder()
         .extensionId("extensionId")
         .extensionVersionNumber(123)
         // the properties below are optional
         .actions(List.of(action))
         .description("description")
         .extensionArn("extensionArn")
         .name("name")
         .build();
 
  • Method Details

    • getExtensionId

      @Stability(Stable) @NotNull String getExtensionId()
      The ID of the extension.
    • getExtensionVersionNumber

      @Stability(Stable) @NotNull Number getExtensionVersionNumber()
      The version number of the extension.
    • getActions

      @Stability(Stable) @Nullable default List<Action> getActions()
      The actions of the extension.

      Default: - None.

    • getDescription

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

      Default: - None.

    • getExtensionArn

      @Stability(Stable) @Nullable default String getExtensionArn()
      The Amazon Resource Name (ARN) of the extension.

      Default: - The extension ARN is generated.

    • getName

      @Stability(Stable) @Nullable default String getName()
      The name of the extension.

      Default: - None.

    • builder

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