Interface AliasAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AliasAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:49.767Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAliasAttributesstatic final classAn implementation forAliasAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic AliasAttributes.Builderbuilder()default String(experimental) The ARN of the alias.default String(experimental) The identifier of the alias.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAliasArn
(experimental) The ARN of the alias.At least one of
aliasArnandaliasIdmust be provided.Default: derived from `aliasId`.
-
getAliasId
(experimental) The identifier of the alias.At least one of
aliasIdandaliasArnmust be provided.Default: derived from `aliasArn`.
-
builder
- Returns:
- a
AliasAttributes.BuilderofAliasAttributes
-