Interface AliasAttributes

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:26.597Z") @Stability(Experimental) public interface AliasAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) A full specification of an alias that can be used to import it fluently into the CDK application.

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.gamelift.alpha.*;
 AliasAttributes aliasAttributes = AliasAttributes.builder()
         .aliasArn("aliasArn")
         .aliasId("aliasId")
         .build();
 
  • Method Details

    • getAliasArn

      @Stability(Experimental) @Nullable default String getAliasArn()
      (experimental) The ARN of the alias.

      At least one of aliasArn and aliasId must be provided.

      Default: derived from `aliasId`.

    • getAliasId

      @Stability(Experimental) @Nullable default String getAliasId()
      (experimental) The identifier of the alias.

      At least one of aliasId and aliasArn must be provided.

      Default: derived from `aliasArn`.

    • builder

      @Stability(Experimental) static AliasAttributes.Builder builder()
      Returns:
      a AliasAttributes.Builder of AliasAttributes