interface EC2ImageBuilderWorkflowStepWaitingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Events.EC2ImageBuilderWorkflowStepWaiting.EC2ImageBuilderWorkflowStepWaitingProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/events#EC2ImageBuilderWorkflowStepWaiting_EC2ImageBuilderWorkflowStepWaitingProps |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.events.EC2ImageBuilderWorkflowStepWaiting.EC2ImageBuilderWorkflowStepWaitingProps |
Python | aws_cdk.mixins_preview.aws_imagebuilder.events.EC2ImageBuilderWorkflowStepWaiting.EC2ImageBuilderWorkflowStepWaitingProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_imagebuilder ยป events ยป EC2ImageBuilderWorkflowStepWaiting ยป EC2ImageBuilderWorkflowStepWaitingProps |
Props type for aws.imagebuilder@EC2ImageBuilderWorkflowStepWaiting event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as imagebuilder_events } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const eC2ImageBuilderWorkflowStepWaitingProps: imagebuilder_events.EC2ImageBuilderWorkflowStepWaiting.EC2ImageBuilderWorkflowStepWaitingProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
workflowExecutionId: ['workflowExecutionId'],
workflowStepExecutionId: ['workflowStepExecutionId'],
workflowStepName: ['workflowStepName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| workflow | string[] | workflow-execution-id property. |
| workflow | string[] | workflow-step-execution-id property. |
| workflow | string[] | workflow-step-name property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
workflowExecutionId?
Type:
string[]
(optional, default: Do not filter on this field)
workflow-execution-id property.
Specify an array of string values to match this event if the actual value of workflow-execution-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
workflowStepExecutionId?
Type:
string[]
(optional, default: Do not filter on this field)
workflow-step-execution-id property.
Specify an array of string values to match this event if the actual value of workflow-step-execution-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
workflowStepName?
Type:
string[]
(optional, default: Do not filter on this field)
workflow-step-name property.
Specify an array of string values to match this event if the actual value of workflow-step-name 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