Interface CfnFleet.ComputeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFleet.ComputeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnFleet

@Stability(Stable) public static interface CfnFleet.ComputeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains compute attributes.

These attributes only need be specified when your project's or fleet's computeType is set to ATTRIBUTE_BASED_COMPUTE .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codebuild.*;
 ComputeConfigurationProperty computeConfigurationProperty = ComputeConfigurationProperty.builder()
         .disk(123)
         .machineType("machineType")
         .memory(123)
         .vCpu(123)
         .build();
 

See Also: