Interface CfnEC2FleetPropsMixin.ReservedCapacityOptionsRequestProperty

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

@Stability(Stable) public static interface CfnEC2FleetPropsMixin.ReservedCapacityOptionsRequestProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 ReservedCapacityOptionsRequestProperty reservedCapacityOptionsRequestProperty = ReservedCapacityOptionsRequestProperty.builder()
         .allocationStrategy("allocationStrategy")
         .capacityReservationTarget(CapacityReservationTargetRequestProperty.builder()
                 .capacityReservationIds(List.of("capacityReservationIds"))
                 .capacityReservationResourceGroupArns(List.of("capacityReservationResourceGroupArns"))
                 .build())
         .reservationTypes(List.of("reservationTypes"))
         .reservedCapacityFallbackOptions(ReservedCapacityFallbackOptionsRequestProperty.builder()
                 .marketTypes(List.of("marketTypes"))
                 .build())
         .build();
 

See Also: