interface CfnExecutionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.States.CfnExecutionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstates#CfnExecutionProps |
Java | software.amazon.awscdk.services.states.CfnExecutionProps |
Python | aws_cdk.aws_states.CfnExecutionProps |
TypeScript | aws-cdk-lib » aws_states » CfnExecutionProps |
Properties for defining a CfnExecution.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-states-execution.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_states as states } from 'aws-cdk-lib';
const cfnExecutionProps: states.CfnExecutionProps = {
stateMachineArn: 'stateMachineArn',
// the properties below are optional
input: 'input',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | The Amazon Resource Name (ARN) of the state machine that was executed. |
| input? | string | The string that contains the JSON input data for the execution. |
| name? | string | The name of the execution. |
stateMachineArn
Type:
string
The Amazon Resource Name (ARN) of the state machine that was executed.
input?
Type:
string
(optional)
The string that contains the JSON input data for the execution.
name?
Type:
string
(optional)
The name of the execution.

.NET
Go
Java
Python
TypeScript