Interface CfnStateMachineAlias.RoutingConfigurationVersionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStateMachineAlias.RoutingConfigurationVersionProperty.Jsii$Proxy
Enclosing class:
CfnStateMachineAlias

@Stability(Stable) public static interface CfnStateMachineAlias.RoutingConfigurationVersionProperty extends software.amazon.jsii.JsiiSerializable
The state machine version to which you want to route the execution traffic.

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.*;
 RoutingConfigurationVersionProperty routingConfigurationVersionProperty = RoutingConfigurationVersionProperty.builder()
         .stateMachineVersionArn("stateMachineVersionArn")
         .weight(123)
         .build();
 

See Also: