Creates an alias for a state machine that points to one or two versions of the same state machine
Source:R/sfn_operations.R
sfn_create_state_machine_alias.RdCreates an alias for a state machine that points to one or two versions of the same state machine. You can set your application to call start_execution with an alias and update the version the alias uses without changing the client's code.
See https://www.paws-r-sdk.com/docs/sfn_create_state_machine_alias/ for full documentation.
Arguments
- description
A description for the state machine alias.
- name
[required] The name of the state machine alias.
To avoid conflict with version ARNs, don't use an integer in the name of the alias.
- routingConfiguration
[required] The routing configuration of a state machine alias. The routing configuration shifts execution traffic between two state machine versions.
routingConfigurationcontains an array ofRoutingConfigobjects that specify up to two state machine versions. Step Functions then randomly choses which version to run an execution with based on the weight assigned to eachRoutingConfig.