interface QuotaShareResourceSharingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnQuotaShare.QuotaShareResourceSharingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnQuotaShare_QuotaShareResourceSharingConfigurationProperty |
Java | software.amazon.awscdk.services.batch.CfnQuotaShare.QuotaShareResourceSharingConfigurationProperty |
Python | aws_cdk.aws_batch.CfnQuotaShare.QuotaShareResourceSharingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnQuotaShare » QuotaShareResourceSharingConfigurationProperty |
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 quotaShareResourceSharingConfigurationProperty: batch.CfnQuotaShare.QuotaShareResourceSharingConfigurationProperty = {
strategy: 'strategy',
// the properties below are optional
borrowLimit: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| strategy | string | The resource sharing strategy. |
| borrow | number | The maximum amount of compute capacity that can be borrowed. |
strategy
Type:
string
The resource sharing strategy.
borrowLimit?
Type:
number
(optional)
The maximum amount of compute capacity that can be borrowed.
Use -1 for unlimited borrowing.

.NET
Go
Java
Python
TypeScript