Interface CfnAliasMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAliasMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.566Z")
@Stability(Stable)
public interface CfnAliasMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAliasPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.gamelift.*;
CfnAliasMixinProps cfnAliasMixinProps = CfnAliasMixinProps.builder()
.description("description")
.name("name")
.routingStrategy(RoutingStrategyProperty.builder()
.fleetId("fleetId")
.message("message")
.type("type")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAliasMixinPropsstatic final classAn implementation forCfnAliasMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAliasMixinProps.Builderbuilder()default StringA human-readable description of the alias.default StringgetName()A descriptive label that is associated with an alias.default ObjectThe routing configuration, including routing type and fleet target, for the alias.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A human-readable description of the alias.- See Also:
-
getName
A descriptive label that is associated with an alias.Alias names do not need to be unique.
- See Also:
-
getRoutingStrategy
The routing configuration, including routing type and fleet target, for the alias.Returns union: either
IResolvableorCfnAliasPropsMixin.RoutingStrategyProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnAliasMixinProps.BuilderofCfnAliasMixinProps
-