interface BorrowConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LicenseManager.Mixins.CfnLicensePropsMixin.BorrowConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslicensemanager/mixins#CfnLicensePropsMixin_BorrowConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.licensemanager.mixins.CfnLicensePropsMixin.BorrowConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_licensemanager.mixins.CfnLicensePropsMixin.BorrowConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_licensemanager » mixins » CfnLicensePropsMixin » BorrowConfigurationProperty |
Details about a borrow configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as licensemanager_mixins } from '@aws-cdk/mixins-preview/aws-licensemanager';
const borrowConfigurationProperty: licensemanager_mixins.CfnLicensePropsMixin.BorrowConfigurationProperty = {
allowEarlyCheckIn: false,
maxTimeToLiveInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | boolean | IResolvable | Indicates whether early check-ins are allowed. |
| max | number | Maximum time for the borrow configuration, in minutes. |
allowEarlyCheckIn?
Type:
boolean | IResolvable
(optional)
Indicates whether early check-ins are allowed.
maxTimeToLiveInMinutes?
Type:
number
(optional)
Maximum time for the borrow configuration, in minutes.

.NET
Go
Java
Python
TypeScript