interface CodePipelinePipelineExecutionStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelinePipelineExecutionStateChange.CodePipelinePipelineExecutionStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelinePipelineExecutionStateChange_CodePipelinePipelineExecutionStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelinePipelineExecutionStateChange.CodePipelinePipelineExecutionStateChangeProps |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelinePipelineExecutionStateChange.CodePipelinePipelineExecutionStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelinePipelineExecutionStateChange ยป CodePipelinePipelineExecutionStateChangeProps |
Props type for aws.codepipeline@CodePipelinePipelineExecutionStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codepipeline_events } from '@aws-cdk/mixins-preview/aws-codepipeline';
const codePipelinePipelineExecutionStateChangeProps: codepipeline_events.CodePipelinePipelineExecutionStateChange.CodePipelinePipelineExecutionStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
executionId: ['executionId'],
executionTrigger: {
triggerDetail: ['triggerDetail'],
triggerType: ['triggerType'],
},
pipeline: ['pipeline'],
state: ['state'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| execution | string[] | execution-id property. |
| execution | Execution | execution-trigger property. |
| pipeline? | string[] | pipeline property. |
| state? | string[] | state property. |
| version? | string[] | version property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
executionId?
Type:
string[]
(optional, default: Do not filter on this field)
execution-id property.
Specify an array of string values to match this event if the actual value of 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.
executionTrigger?
Type:
Execution
(optional, default: Do not filter on this field)
execution-trigger property.
Specify an array of string values to match this event if the actual value of execution-trigger is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
pipeline?
Type:
string[]
(optional, default: Do not filter on this field)
pipeline property.
Specify an array of string values to match this event if the actual value of pipeline is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
state property.
Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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