interface CodePipelineStageExecutionStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelineStageExecutionStateChange.CodePipelineStageExecutionStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelineStageExecutionStateChange_CodePipelineStageExecutionStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelineStageExecutionStateChange.CodePipelineStageExecutionStateChangeProps |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelineStageExecutionStateChange.CodePipelineStageExecutionStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelineStageExecutionStateChange ยป CodePipelineStageExecutionStateChangeProps |
Props type for aws.codepipeline@CodePipelineStageExecutionStateChange 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 codePipelineStageExecutionStateChangeProps: codepipeline_events.CodePipelineStageExecutionStateChange.CodePipelineStageExecutionStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
executionId: ['executionId'],
pipeline: ['pipeline'],
stage: ['stage'],
state: ['state'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| execution | string[] | execution-id property. |
| pipeline? | string[] | pipeline property. |
| stage? | string[] | stage 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.
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.
stage?
Type:
string[]
(optional, default: Do not filter on this field)
stage property.
Specify an array of string values to match this event if the actual value of stage 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