interface CfnExecutionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.States.CfnExecutionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsstates#CfnExecutionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.states.CfnExecutionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_states.CfnExecutionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_states » CfnExecutionMixinProps |
Properties for CfnExecutionPropsMixin.
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/cfn-property-mixins';
const cfnExecutionMixinProps: states.CfnExecutionMixinProps = {
input: 'input',
name: 'name',
stateMachineArn: 'stateMachineArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| input? | string | The string that contains the JSON input data for the execution. |
| name? | string | The name of the execution. |
| state | 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.
stateMachineArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the state machine that was executed.

.NET
Go
Java
Python
TypeScript