Interface CfnCapacityReservationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapacityReservationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:53.541Z") @Stability(Stable) public interface CfnCapacityReservationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCapacityReservation.

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.athena.*;
 CfnCapacityReservationProps cfnCapacityReservationProps = CfnCapacityReservationProps.builder()
         .name("name")
         .targetDpus(123)
         // the properties below are optional
         .capacityAssignmentConfiguration(CapacityAssignmentConfigurationProperty.builder()
                 .capacityAssignments(List.of(CapacityAssignmentProperty.builder()
                         .workgroupNames(List.of("workgroupNames"))
                         .build()))
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: