Interface ProjectEvents.CodeBuildBuildPhaseChange.Artifact

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ProjectEvents.CodeBuildBuildPhaseChange.Artifact.Jsii$Proxy
Enclosing class:
ProjectEvents.CodeBuildBuildPhaseChange

@Stability(Experimental) public static interface ProjectEvents.CodeBuildBuildPhaseChange.Artifact extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for Artifact.

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.codebuild.events.*;
 Artifact artifact = Artifact.builder()
         .location(List.of("location"))
         .md5Sum(List.of("md5Sum"))
         .sha256Sum(List.of("sha256Sum"))
         .build();
 
  • Method Details

    • getLocation

      @Stability(Experimental) @Nullable default List<String> getLocation()
      (experimental) location property.

      Specify an array of string values to match this event if the actual value of location 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

    • getMd5Sum

      @Stability(Experimental) @Nullable default List<String> getMd5Sum()
      (experimental) md5sum property.

      Specify an array of string values to match this event if the actual value of md5sum 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

    • getSha256Sum

      @Stability(Experimental) @Nullable default List<String> getSha256Sum()
      (experimental) sha256sum property.

      Specify an array of string values to match this event if the actual value of sha256sum 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

      @Stability(Experimental) static ProjectEvents.CodeBuildBuildPhaseChange.Artifact.Builder builder()
      Returns:
      a ProjectEvents.CodeBuildBuildPhaseChange.Artifact.Builder of ProjectEvents.CodeBuildBuildPhaseChange.Artifact