interface CodePipelineActionExecutionStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelineActionExecutionStateChange_CodePipelineActionExecutionStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelineActionExecutionStateChange ยป CodePipelineActionExecutionStateChangeProps |
Props type for aws.codepipeline@CodePipelineActionExecutionStateChange 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 codePipelineActionExecutionStateChangeProps: codepipeline_events.CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps = {
action: ['action'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
executionId: ['executionId'],
executionResult: {
externalExecutionId: ['externalExecutionId'],
externalExecutionSummary: ['externalExecutionSummary'],
externalExecutionUrl: ['externalExecutionUrl'],
},
inputArtifacts: {
name: ['name'],
s3Location: {
bucket: ['bucket'],
key: ['key'],
},
},
outputArtifacts: {
name: ['name'],
s3Location: {
bucket: ['bucket'],
key: ['key'],
},
},
pipeline: ['pipeline'],
region: ['region'],
stage: ['stage'],
state: ['state'],
type: {
category: ['category'],
owner: ['owner'],
provider: ['provider'],
version: ['version'],
},
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string[] | action property. |
| event | AWSEvent | EventBridge event metadata. |
| execution | string[] | execution-id property. |
| execution | Execution | execution-result property. |
| input | Input | input-artifacts property. |
| output | Output | output-artifacts property. |
| pipeline? | string[] | pipeline property. |
| region? | string[] | region property. |
| stage? | string[] | stage property. |
| state? | string[] | state property. |
| type? | Type | type property. |
| version? | string[] | version property. |
action?
Type:
string[]
(optional, default: Do not filter on this field)
action property.
Specify an array of string values to match this event if the actual value of action is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
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.
executionResult?
Type:
Execution
(optional, default: Do not filter on this field)
execution-result property.
Specify an array of string values to match this event if the actual value of execution-result is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
inputArtifacts?
Type:
Input
(optional, default: Do not filter on this field)
input-artifacts property.
Specify an array of string values to match this event if the actual value of input-artifacts is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
outputArtifacts?
Type:
Output
(optional, default: Do not filter on this field)
output-artifacts property.
Specify an array of string values to match this event if the actual value of output-artifacts 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.
region?
Type:
string[]
(optional, default: Do not filter on this field)
region property.
Specify an array of string values to match this event if the actual value of region 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.
type?
Type:
Type
(optional, default: Do not filter on this field)
type property.
Specify an array of string values to match this event if the actual value of type 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