Interface CfnFleetPropsMixin.ServiceManagedEc2InstanceCapabilitiesProperty

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

@Stability(Stable) public static interface CfnFleetPropsMixin.ServiceManagedEc2InstanceCapabilitiesProperty extends software.amazon.jsii.JsiiSerializable
The Amazon EC2 instance capabilities.

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.deadline.mixins.*;
 ServiceManagedEc2InstanceCapabilitiesProperty serviceManagedEc2InstanceCapabilitiesProperty = ServiceManagedEc2InstanceCapabilitiesProperty.builder()
         .acceleratorCapabilities(AcceleratorCapabilitiesProperty.builder()
                 .count(AcceleratorCountRangeProperty.builder()
                         .max(123)
                         .min(123)
                         .build())
                 .selections(List.of(AcceleratorSelectionProperty.builder()
                         .name("name")
                         .runtime("runtime")
                         .build()))
                 .build())
         .allowedInstanceTypes(List.of("allowedInstanceTypes"))
         .cpuArchitectureType("cpuArchitectureType")
         .customAmounts(List.of(FleetAmountCapabilityProperty.builder()
                 .max(123)
                 .min(123)
                 .name("name")
                 .build()))
         .customAttributes(List.of(FleetAttributeCapabilityProperty.builder()
                 .name("name")
                 .values(List.of("values"))
                 .build()))
         .excludedInstanceTypes(List.of("excludedInstanceTypes"))
         .memoryMiB(MemoryMiBRangeProperty.builder()
                 .max(123)
                 .min(123)
                 .build())
         .osFamily("osFamily")
         .rootEbsVolume(Ec2EbsVolumeProperty.builder()
                 .iops(123)
                 .sizeGiB(123)
                 .throughputMiB(123)
                 .build())
         .vCpuCount(VCpuCountRangeProperty.builder()
                 .max(123)
                 .min(123)
                 .build())
         .build();
 

See Also: