Interface ProjectEvents.CodeBuildBuildPhaseChange.Artifact
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ProjectEvents.CodeBuildBuildPhaseChange.Artifact.Jsii$Proxy
- Enclosing class:
ProjectEvents.CodeBuildBuildPhaseChange
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forProjectEvents.CodeBuildBuildPhaseChange.Artifactstatic final classAn implementation forProjectEvents.CodeBuildBuildPhaseChange.Artifact -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) location property.(experimental) md5sum property.(experimental) sha256sum property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-