Show / Hide Table of Contents

Class CfnStateMachineAlias.RoutingConfigurationVersionProperty

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

Inheritance
object
CfnStateMachineAlias.RoutingConfigurationVersionProperty
Implements
CfnStateMachineAlias.IRoutingConfigurationVersionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStateMachineAlias.RoutingConfigurationVersionProperty : CfnStateMachineAlias.IRoutingConfigurationVersionProperty
Syntax (vb)
Public Class CfnStateMachineAlias.RoutingConfigurationVersionProperty Implements CfnStateMachineAlias.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.AWS.StepFunctions;

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

Synopsis

Constructors

RoutingConfigurationVersionProperty()

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

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.

Constructors

RoutingConfigurationVersionProperty()

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

public RoutingConfigurationVersionProperty()
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.AWS.StepFunctions;

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

Properties

StateMachineVersionArn

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

public string StateMachineVersionArn { get; set; }
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.

public double Weight { get; set; }
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

Implements

CfnStateMachineAlias.IRoutingConfigurationVersionProperty
Back to top Generated by DocFX