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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCodePipelinePipelineExecutionStateChange.ExecutionTrigger -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) trigger-detail property.(experimental) trigger-type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTriggerDetail
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTriggerType
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static CodePipelinePipelineExecutionStateChange.ExecutionTrigger.Builder builder()
-