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

.NET
Go
Java
Python
TypeScript