Enum ComputeType

java.lang.Object
java.lang.Enum<ComputeType>
software.amazon.awscdk.services.codebuild.ComputeType
All Implemented Interfaces:
Serializable, Comparable<ComputeType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.775Z") @Stability(Stable) public enum ComputeType extends Enum<ComputeType>
Build machine compute type.

Example:

 Vpc vpc;
 SecurityGroup mySecurityGroup;
 CodeBuildStep.Builder.create("Synth")
         // ...standard ShellStep props...
         .commands(List.of())
         .env(Map.of())
         // If you are using a CodeBuildStep explicitly, set the 'cdk.out' directory
         // to be the synth step's output.
         .primaryOutputDirectory("cdk.out")
         // Control the name of the project
         .projectName("MyProject")
         // Control parts of the BuildSpec other than the regular 'build' and 'install' commands
         .partialBuildSpec(BuildSpec.fromObject(Map.of(
                 "version", "0.2")))
         // Control the build environment
         .buildEnvironment(BuildEnvironment.builder()
                 .computeType(ComputeType.LARGE)
                 .build())
         .timeout(Duration.minutes(90))
         // Control Elastic Network Interface creation
         .vpc(vpc)
         .subnetSelection(SubnetSelection.builder().subnetType(SubnetType.PRIVATE_WITH_NAT).build())
         .securityGroups(List.of(mySecurityGroup))
         // Additional policy statements for the execution role
         .rolePolicyStatements(List.of(
             PolicyStatement.Builder.create().build()))
         .build();
 
  • Enum Constant Details

    • SMALL

      @Stability(Stable) public static final ComputeType SMALL
    • MEDIUM

      @Stability(Stable) public static final ComputeType MEDIUM
    • LARGE

      @Stability(Stable) public static final ComputeType LARGE
    • X2_LARGE

      @Stability(Stable) public static final ComputeType X2_LARGE
  • Method Details

    • values

      public static ComputeType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ComputeType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null