Show / Hide Table of Contents

Interface CfnStateMachineAliasPropsMixin.IRoutingConfigurationVersionProperty

The state machine version to which you want to route the execution traffic.

Namespace: Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnStateMachineAliasPropsMixin.IRoutingConfigurationVersionProperty
Syntax (vb)
Public Interface CfnStateMachineAliasPropsMixin.IRoutingConfigurationVersionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachinealias-routingconfigurationversion.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins;

             var routingConfigurationVersionProperty = new RoutingConfigurationVersionProperty {
                 StateMachineVersionArn = "stateMachineVersionArn",
                 Weight = 123
             };

Synopsis

Properties

StateMachineVersionArn

The Amazon Resource Name (ARN) that identifies one or two state machine versions defined in the routing configuration.

Weight

The percentage of traffic you want to route to the state machine version.

Properties

StateMachineVersionArn

The Amazon Resource Name (ARN) that identifies one or two state machine versions defined in the routing configuration.

string? StateMachineVersionArn { get; }
Property Value

string

Remarks

If you specify the ARN of a second version, it must belong to the same state machine as the first version.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachinealias-routingconfigurationversion.html#cfn-stepfunctions-statemachinealias-routingconfigurationversion-statemachineversionarn

Weight

The percentage of traffic you want to route to the state machine version.

double? Weight { get; }
Property Value

double?

Remarks

The sum of the weights in the routing configuration must be equal to 100.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stepfunctions-statemachinealias-routingconfigurationversion.html#cfn-stepfunctions-statemachinealias-routingconfigurationversion-weight

Back to top Generated by DocFX