interface QuotaShareCapacityLimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnQuotaSharePropsMixin.QuotaShareCapacityLimitProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnQuotaSharePropsMixin_QuotaShareCapacityLimitProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnQuotaSharePropsMixin.QuotaShareCapacityLimitProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnQuotaSharePropsMixin.QuotaShareCapacityLimitProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnQuotaSharePropsMixin » QuotaShareCapacityLimitProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from '@aws-cdk/cfn-property-mixins';
const quotaShareCapacityLimitProperty: batch.CfnQuotaSharePropsMixin.QuotaShareCapacityLimitProperty = {
capacityUnit: 'capacityUnit',
maxCapacity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity | string | The unit of compute capacity for the capacityLimit. |
| max | number | The maximum capacity available for the quota share. |
capacityUnit?
Type:
string
(optional)
The unit of compute capacity for the capacityLimit.
For example, ml.m5.large.
maxCapacity?
Type:
number
(optional)
The maximum capacity available for the quota share.
This value represents the maximum quantity of a resource that can be allocated to jobs in the quota share without borrowing.

.NET
Go
Java
Python
TypeScript