Interface ICfnStateMachineVersionProps
Properties for defining a CfnStateMachineVersion
.
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnStateMachineVersionProps
Syntax (vb)
Public Interface ICfnStateMachineVersionProps
Remarks
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 cfnStateMachineVersionProps = new CfnStateMachineVersionProps {
StateMachineArn = "stateMachineArn",
// the properties below are optional
Description = "description",
StateMachineRevisionId = "stateMachineRevisionId"
};
Synopsis
Properties
Description | An optional description of the state machine version. |
State |
The Amazon Resource Name (ARN) of the state machine. |
State |
Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration. |
Properties
Description
An optional description of the state machine version.
virtual string Description { get; }
Property Value
System.
Remarks
StateMachineArn
The Amazon Resource Name (ARN) of the state machine.
string StateMachineArn { get; }
Property Value
System.
Remarks
StateMachineRevisionId
Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration.
virtual string StateMachineRevisionId { get; }
Property Value
System.
Remarks
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
.