interface StepFunctionsExecutionStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.States.Events.StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstates/events#StepFunctionsExecutionStatusChange_StepFunctionsExecutionStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.states.events.StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_states.events.StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_states ยป events ยป StepFunctionsExecutionStatusChange ยป StepFunctionsExecutionStatusChangeProps |
Props type for aws.states@StepFunctionsExecutionStatusChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as states_events } from '@aws-cdk/mixins-preview/aws-states';
const stepFunctionsExecutionStatusChangeProps: states_events.StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
executionArn: ['executionArn'],
input: ['input'],
name: ['name'],
output: ['output'],
startDate: ['startDate'],
stateMachineArn: ['stateMachineArn'],
status: ['status'],
stopDate: ['stopDate'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| execution | string[] | executionArn property. |
| input? | string[] | input property. |
| name? | string[] | name property. |
| output? | string[] | output property. |
| start | string[] | startDate property. |
| state | string[] | stateMachineArn property. |
| status? | string[] | status property. |
| stop | string[] | stopDate property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
executionArn?
Type:
string[]
(optional, default: Filter with the Execution reference)
executionArn property.
Specify an array of string values to match this event if the actual value of executionArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
input?
Type:
string[]
(optional, default: Do not filter on this field)
input property.
Specify an array of string values to match this event if the actual value of input is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
output?
Type:
string[]
(optional, default: Do not filter on this field)
output property.
Specify an array of string values to match this event if the actual value of output is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startDate?
Type:
string[]
(optional, default: Do not filter on this field)
startDate property.
Specify an array of string values to match this event if the actual value of startDate is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stateMachineArn?
Type:
string[]
(optional, default: Do not filter on this field)
stateMachineArn property.
Specify an array of string values to match this event if the actual value of stateMachineArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stopDate?
Type:
string[]
(optional, default: Do not filter on this field)
stopDate property.
Specify an array of string values to match this event if the actual value of stopDate is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript