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