Interface ProjectEvents.CodeBuildBuildPhaseChange.Environment
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ProjectEvents.CodeBuildBuildPhaseChange.Environment.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.*;
Environment environment = Environment.builder()
.computeType(List.of("computeType"))
.environmentVariables(List.of(EnvironmentItem.builder()
.name(List.of("name"))
.type(List.of("type"))
.value(List.of("value"))
.build()))
.image(List.of("image"))
.imagePullCredentialsType(List.of("imagePullCredentialsType"))
.privilegedMode(List.of("privilegedMode"))
.type(List.of("type"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forProjectEvents.CodeBuildBuildPhaseChange.Environmentstatic final classAn implementation forProjectEvents.CodeBuildBuildPhaseChange.Environment -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) compute-type property.(experimental) environment-variables property.getImage()(experimental) image property.(experimental) image-pull-credentials-type property.(experimental) privileged-mode property.getType()(experimental) type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComputeType
(experimental) compute-type property.Specify an array of string values to match this event if the actual value of compute-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
-
getEnvironmentVariables
@Stability(Experimental) @Nullable default List<ProjectEvents.CodeBuildBuildPhaseChange.EnvironmentItem> getEnvironmentVariables()(experimental) environment-variables property.Specify an array of string values to match this event if the actual value of environment-variables 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
-
getImage
(experimental) image property.Specify an array of string values to match this event if the actual value of image 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
-
getImagePullCredentialsType
(experimental) image-pull-credentials-type property.Specify an array of string values to match this event if the actual value of image-pull-credentials-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
-
getPrivilegedMode
(experimental) privileged-mode property.Specify an array of string values to match this event if the actual value of privileged-mode 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
-
builder
@Stability(Experimental) static ProjectEvents.CodeBuildBuildPhaseChange.Environment.Builder builder()
-