Interface CodePipelinePipelineExecutionStateChange.ExecutionTrigger

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CodePipelinePipelineExecutionStateChange.ExecutionTrigger.Jsii$Proxy
Enclosing class:
CodePipelinePipelineExecutionStateChange

@Stability(Experimental) public static interface CodePipelinePipelineExecutionStateChange.ExecutionTrigger extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.mixins.preview.services.codepipeline.events.*;
 ExecutionTrigger executionTrigger = ExecutionTrigger.builder()
         .triggerDetail(List.of("triggerDetail"))
         .triggerType(List.of("triggerType"))
         .build();
 
  • Method Details