Interface CfnLicense.BorrowConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnLicense.BorrowConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnLicense
@Stability(Stable)
public static interface CfnLicense.BorrowConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.licensemanager.*;
 BorrowConfigurationProperty borrowConfigurationProperty = BorrowConfigurationProperty.builder()
         .allowEarlyCheckIn(false)
         .maxTimeToLiveInMinutes(123)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLicense.BorrowConfigurationPropertystatic final classAn implementation forCfnLicense.BorrowConfigurationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()Indicates whether early check-ins are allowed.Maximum time for the borrow configuration, in minutes.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAllowEarlyCheckInIndicates whether early check-ins are allowed.
- 
getMaxTimeToLiveInMinutesMaximum time for the borrow configuration, in minutes.
- 
builder
 
-