Interface CfnStateMachineAliasProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:14.351Z") @Stability(Stable) public interface CfnStateMachineAliasProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnStateMachineAlias.

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.stepfunctions.*;
 CfnStateMachineAliasProps cfnStateMachineAliasProps = CfnStateMachineAliasProps.builder()
         .deploymentPreference(DeploymentPreferenceProperty.builder()
                 .stateMachineVersionArn("stateMachineVersionArn")
                 .type("type")
                 // the properties below are optional
                 .alarms(List.of("alarms"))
                 .interval(123)
                 .percentage(123)
                 .build())
         .description("description")
         .name("name")
         .routingConfiguration(List.of(RoutingConfigurationVersionProperty.builder()
                 .stateMachineVersionArn("stateMachineVersionArn")
                 .weight(123)
                 .build()))
         .build();
 

See Also: