class ExecutionEvents
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.States.Events.ExecutionEvents |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstates/events#ExecutionEvents |
Java | software.amazon.awscdk.mixins.preview.services.states.events.ExecutionEvents |
Python | aws_cdk.mixins_preview.aws_states.events.ExecutionEvents |
TypeScript | @aws-cdk/mixins-preview ยป aws_states ยป events ยป ExecutionEvents |
EventBridge event patterns for Execution.
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';
import { aws_states as interfaces_states } from 'aws-cdk-lib/interfaces';
declare const executionRef: interfaces_states.IExecutionRef;
const executionEvents = states_events.ExecutionEvents.fromExecution(executionRef);
Methods
| Name | Description |
|---|---|
| step | EventBridge event pattern for Execution Step Functions Execution Status Change. |
| static from | Create ExecutionEvents from a Execution reference. |
stepFunctionsExecutionStatusChangePattern(options?)
public stepFunctionsExecutionStatusChangePattern(options?: StepFunctionsExecutionStatusChangeProps): EventPattern
Parameters
Returns
EventBridge event pattern for Execution Step Functions Execution Status Change.
static fromExecution(executionRef)
public static fromExecution(executionRef: IExecutionRef): ExecutionEvents
Parameters
- executionRef
IExecutionRef
Returns
Create ExecutionEvents from a Execution reference.

.NET
Go
Java
Python
TypeScript