Interface CfnLicense.EntitlementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLicense.EntitlementProperty.Jsii$Proxy
Enclosing class:
CfnLicense

@Stability(Stable) public static interface CfnLicense.EntitlementProperty extends software.amazon.jsii.JsiiSerializable
Describes a resource entitled for use with a license.

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.*;
 EntitlementProperty entitlementProperty = EntitlementProperty.builder()
         .name("name")
         .unit("unit")
         // the properties below are optional
         .allowCheckIn(false)
         .maxCount(123)
         .overage(false)
         .value("value")
         .build();
 

See Also: