interface BorrowConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LicenseManager.CfnLicensePropsMixin.BorrowConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslicensemanager#CfnLicensePropsMixin_BorrowConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.licensemanager.CfnLicensePropsMixin.BorrowConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_licensemanager.CfnLicensePropsMixin.BorrowConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_licensemanager » 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 { aws_licensemanager as licensemanager } from '@aws-cdk/cfn-property-mixins';
const borrowConfigurationProperty: licensemanager.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