Interface CfnQuotaShareProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-27T13:11:54.866Z") @Stability(Stable) public interface CfnQuotaShareProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnQuotaShare.

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.batch.*;
 CfnQuotaShareProps cfnQuotaShareProps = CfnQuotaShareProps.builder()
         .capacityLimits(List.of(QuotaShareCapacityLimitProperty.builder()
                 .capacityUnit("capacityUnit")
                 .maxCapacity(123)
                 .build()))
         .jobQueue("jobQueue")
         .preemptionConfiguration(QuotaSharePreemptionConfigurationProperty.builder()
                 .inSharePreemption("inSharePreemption")
                 .build())
         .quotaShareName("quotaShareName")
         .resourceSharingConfiguration(QuotaShareResourceSharingConfigurationProperty.builder()
                 .strategy("strategy")
                 // the properties below are optional
                 .borrowLimit(123)
                 .build())
         // the properties below are optional
         .state("state")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: