Interface CfnAutoScalingGroup.CapacityReservationTargetProperty

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

@Stability(Stable) public static interface CfnAutoScalingGroup.CapacityReservationTargetProperty extends software.amazon.jsii.JsiiSerializable
The target for the Capacity Reservation.

Specify Capacity Reservations IDs or Capacity Reservation resource group ARNs.

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.autoscaling.*;
 CapacityReservationTargetProperty capacityReservationTargetProperty = CapacityReservationTargetProperty.builder()
         .capacityReservationIds(List.of("capacityReservationIds"))
         .capacityReservationResourceGroupArns(List.of("capacityReservationResourceGroupArns"))
         .build();
 

See Also: