interface CfnStateMachineVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnStateMachineVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnStateMachineVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnStateMachineVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnStateMachineVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » CfnStateMachineVersionMixinProps |
Properties for CfnStateMachineVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as stepfunctions_mixins } from '@aws-cdk/mixins-preview/aws-stepfunctions';
const cfnStateMachineVersionMixinProps: stepfunctions_mixins.CfnStateMachineVersionMixinProps = {
description: 'description',
stateMachineArn: 'stateMachineArn',
stateMachineRevisionId: 'stateMachineRevisionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | An optional description of the state machine version. |
| state | string | The Amazon Resource Name (ARN) of the state machine. |
| state | string | Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration. |
description?
Type:
string
(optional)
An optional description of the state machine version.
stateMachineArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the state machine.
stateMachineRevisionId?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript