Interface CfnServiceEnvironmentPropsMixin.CapacityLimitProperty

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

@Stability(Stable) public static interface CfnServiceEnvironmentPropsMixin.CapacityLimitProperty extends software.amazon.jsii.JsiiSerializable
Defines the capacity limit for a service environment.

This structure specifies the maximum amount of resources that can be used by service jobs in the environment.

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.batch.*;
 CapacityLimitProperty capacityLimitProperty = CapacityLimitProperty.builder()
         .capacityUnit("capacityUnit")
         .maxCapacity(123)
         .build();
 

See Also: