Interface AliasAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AliasAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.786Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAliasAttributes
static final class
An implementation forAliasAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic AliasAttributes.Builder
builder()
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
aliasArn
andaliasId
must be provided.Default: derived from `aliasId`.
-
getAliasId
(experimental) The identifier of the alias.At least one of
aliasId
andaliasArn
must be provided.Default: derived from `aliasArn`.
-
builder
- Returns:
- a
AliasAttributes.Builder
ofAliasAttributes
-