public static interface CfnLicense.EntitlementProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnLicense.EntitlementProperty.Builder
A builder for
CfnLicense.EntitlementProperty |
static class |
CfnLicense.EntitlementProperty.Jsii$Proxy
An implementation for
CfnLicense.EntitlementProperty |
Modifier and Type | Method and Description |
---|---|
static CfnLicense.EntitlementProperty.Builder |
builder() |
default java.lang.Object |
getAllowCheckIn()
Indicates whether check-ins are allowed.
|
default java.lang.Number |
getMaxCount()
Maximum entitlement count.
|
java.lang.String |
getName()
Entitlement name.
|
default java.lang.Object |
getOverage()
Indicates whether overages are allowed.
|
java.lang.String |
getUnit()
Entitlement unit.
|
default java.lang.String |
getValue()
Entitlement resource.
|
java.lang.String getName()
java.lang.String getUnit()
default java.lang.Object getAllowCheckIn()
default java.lang.Number getMaxCount()
Use if the unit is not None.
default java.lang.Object getOverage()
default java.lang.String getValue()
Use only if the unit is None.
static CfnLicense.EntitlementProperty.Builder builder()