Interface ProjectEvents.CodeBuildBuildPhaseChange.Environment

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

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

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

    • getComputeType

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

      Default: - Do not filter on this field

    • getImage

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

      Default: - Do not filter on this field

    • getImagePullCredentialsType

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

      Default: - Do not filter on this field

    • getPrivilegedMode

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

      Default: - Do not filter on this field

    • getType

      @Stability(Experimental) @Nullable default List<String> 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

    • builder

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