Interface CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps

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

@Stability(Experimental) public static interface CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.codepipeline@CodePipelineActionExecutionStateChange event.

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();
 
  • Method Details

    • getAction

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getExecutionId

      @Stability(Experimental) @Nullable default List<String> 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.Match for 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.Match for 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.Match for 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getPipeline

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getRegion

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getStage

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getState

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getType

      @Stability(Experimental) @Nullable default CodePipelineActionExecutionStateChange.Type 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getVersion

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      Returns:
      a CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps.Builder of CodePipelineActionExecutionStateChange.CodePipelineActionExecutionStateChangeProps