Class CfnStateMachineVersionProps
Properties for defining a CfnStateMachineVersion
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStateMachineVersionProps : Object, ICfnStateMachineVersionProps
Syntax (vb)
Public Class CfnStateMachineVersionProps
Inherits Object
Implements 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
Constructors
CfnStateMachineVersionProps() |
Properties
Description | An optional description of the state machine version. |
StateMachineArn | The Amazon Resource Name (ARN) of the state machine. |
StateMachineRevisionId | Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration. |
Constructors
CfnStateMachineVersionProps()
public CfnStateMachineVersionProps()
Properties
Description
An optional description of the state machine version.
public string Description { get; set; }
Property Value
System.String
Remarks
StateMachineArn
The Amazon Resource Name (ARN) of the state machine.
public string StateMachineArn { get; set; }
Property Value
System.String
Remarks
StateMachineRevisionId
Identifier for a state machine revision, which is an immutable, read-only snapshot of a state machine’s definition and configuration.
public string StateMachineRevisionId { get; set; }
Property Value
System.String
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
.