interface Type
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelineActionExecutionStateChange.Type |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelineActionExecutionStateChange_Type |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelineActionExecutionStateChange.Type |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelineActionExecutionStateChange.Type |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelineActionExecutionStateChange ยป Type |
Type definition for Type.
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 type: codepipeline_events.CodePipelineActionExecutionStateChange.Type = {
category: ['category'],
owner: ['owner'],
provider: ['provider'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| category? | string[] | category property. |
| owner? | string[] | owner property. |
| provider? | string[] | provider property. |
| version? | string[] | version property. |
category?
Type:
string[]
(optional, default: Do not filter on this field)
category property.
Specify an array of string values to match this event if the actual value of category is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
owner?
Type:
string[]
(optional, default: Do not filter on this field)
owner property.
Specify an array of string values to match this event if the actual value of owner is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
provider?
Type:
string[]
(optional, default: Do not filter on this field)
provider property.
Specify an array of string values to match this event if the actual value of provider 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