Interface CfnFleet.FleetCapabilitiesProperty

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

@Stability(Stable) public static interface CfnFleet.FleetCapabilitiesProperty extends software.amazon.jsii.JsiiSerializable
The amounts and attributes of fleets.

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.deadline.*;
 FleetCapabilitiesProperty fleetCapabilitiesProperty = FleetCapabilitiesProperty.builder()
         .amounts(List.of(FleetAmountCapabilityProperty.builder()
                 .min(123)
                 .name("name")
                 // the properties below are optional
                 .max(123)
                 .build()))
         .attributes(List.of(FleetAttributeCapabilityProperty.builder()
                 .name("name")
                 .values(List.of("values"))
                 .build()))
         .build();
 

See Also: