CfnStateMachineVersionMixinProps
- class aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnStateMachineVersionMixinProps(*, description=None, state_machine_arn=None, state_machine_revision_id=None)
Bases:
objectProperties for CfnStateMachineVersionPropsMixin.
- Parameters:
description (
Optional[str]) – An optional description of the state machine version.state_machine_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the state machine.state_machine_revision_id (
Optional[str]) – Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration. 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 has changed since you last updated it. To specify the initial state machine revision, set the value asINITIAL.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_stepfunctions import mixins as stepfunctions_mixins cfn_state_machine_version_mixin_props = stepfunctions_mixins.CfnStateMachineVersionMixinProps( description="description", state_machine_arn="stateMachineArn", state_machine_revision_id="stateMachineRevisionId" )
Attributes
- description
An optional description of the state machine version.
- state_machine_arn
The Amazon Resource Name (ARN) of the state machine.
- state_machine_revision_id
Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration.
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 has changed since you last updated it.
To specify the initial state machine revision, set the value as
INITIAL.