sfn_publish_state_machine_version {paws.application.integration} | R Documentation |
Creates a version from the current revision of a state machine
Description
Creates a version from the current revision of a state machine. Use versions to create immutable snapshots of your state machine. You can start executions from versions either directly or with an alias. To create an alias, use create_state_machine_alias
.
See https://www.paws-r-sdk.com/docs/sfn_publish_state_machine_version/ for full documentation.
Usage
sfn_publish_state_machine_version(
stateMachineArn,
revisionId = NULL,
description = NULL
)
Arguments
stateMachineArn |
[required] The Amazon Resource Name (ARN) of the state machine. |
revisionId |
Only publish the state machine version if the current state machine's revision ID matches the specified ID. Use this option to avoid publishing a version if the state machine
changed since you last updated it. If the specified revision ID doesn't
match the state machine's current revision ID, the API returns
To specify an initial revision ID for a state machine with no revision
ID assigned, specify the string |
description |
An optional description of the state machine version. |