interface QuotaShareCapacityLimitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnQuotaShare.QuotaShareCapacityLimitProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnQuotaShare_QuotaShareCapacityLimitProperty |
Java | software.amazon.awscdk.services.batch.CfnQuotaShare.QuotaShareCapacityLimitProperty |
Python | aws_cdk.aws_batch.CfnQuotaShare.QuotaShareCapacityLimitProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnQuotaShare » 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-lib';
const quotaShareCapacityLimitProperty: batch.CfnQuotaShare.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
The unit of compute capacity for the capacityLimit.
maxCapacity
Type:
number
The maximum capacity available for the quota share.
This value represents the maximum amount of resources that can be allocated to jobs in the quota share without borrowing

.NET
Go
Java
Python
TypeScript