Interface CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps.Jsii$Proxy
- Enclosing class:
CodePipelineActionExecutionStateChange
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.*;
CodePipelineActionExecutionStateChangeProps codePipelineActionExecutionStateChangeProps = CodePipelineActionExecutionStateChangeProps.builder()
.action(List.of("action"))
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.executionId(List.of("executionId"))
.executionResult(ExecutionResult.builder()
.externalExecutionId(List.of("externalExecutionId"))
.externalExecutionSummary(List.of("externalExecutionSummary"))
.externalExecutionUrl(List.of("externalExecutionUrl"))
.build())
.inputArtifacts(InputArtifacts.builder()
.name(List.of("name"))
.s3Location(S3Location.builder()
.bucket(List.of("bucket"))
.key(List.of("key"))
.build())
.build())
.outputArtifacts(OutputArtifacts.builder()
.name(List.of("name"))
.s3Location(S3Location.builder()
.bucket(List.of("bucket"))
.key(List.of("key"))
.build())
.build())
.pipeline(List.of("pipeline"))
.region(List.of("region"))
.stage(List.of("stage"))
.state(List.of("state"))
.type(Type.builder()
.category(List.of("category"))
.owner(List.of("owner"))
.provider(List.of("provider"))
.version(List.of("version"))
.build())
.version(List.of("version"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) action property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) execution-id property.(experimental) execution-result property.(experimental) input-artifacts property.(experimental) output-artifacts property.(experimental) pipeline property.(experimental) region property.getStage()(experimental) stage property.getState()(experimental) state property.getType()(experimental) type property.(experimental) version property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getExecutionId
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getExecutionResult
@Stability(Experimental) @Nullable default CodePipelineActionExecutionStateChange.ExecutionResult getExecutionResult()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getInputArtifacts
@Stability(Experimental) @Nullable default CodePipelineActionExecutionStateChange.InputArtifacts getInputArtifacts()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getOutputArtifacts
@Stability(Experimental) @Nullable default CodePipelineActionExecutionStateChange.OutputArtifacts getOutputArtifacts()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPipeline
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getRegion
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStage
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getState
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getType
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getVersion
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps.Builder builder()
-