interface EntitlementProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.LicenseManager.CfnLicense.EntitlementProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslicensemanager#CfnLicense_EntitlementProperty |
![]() | software.amazon.awscdk.services.licensemanager.CfnLicense.EntitlementProperty |
![]() | aws_cdk.aws_licensemanager.CfnLicense.EntitlementProperty |
![]() | aws-cdk-lib » aws_licensemanager » CfnLicense » EntitlementProperty |
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 { aws_licensemanager as licensemanager } from 'aws-cdk-lib';
const entitlementProperty: licensemanager.CfnLicense.EntitlementProperty = {
name: 'name',
unit: 'unit',
// the properties below are optional
allowCheckIn: false,
maxCount: 123,
overage: false,
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
name | string | Entitlement name. |
unit | string | Entitlement unit. |
allow | boolean | IResolvable | Indicates whether check-ins are allowed. |
max | number | Maximum entitlement count. |
overage? | boolean | IResolvable | Indicates whether overages are allowed. |
value? | string | Entitlement resource. |
name
Type:
string
Entitlement name.
unit
Type:
string
Entitlement unit.
allowCheckIn?
Type:
boolean |
IResolvable
(optional)
Indicates whether check-ins are allowed.
maxCount?
Type:
number
(optional)
Maximum entitlement count.
Use if the unit is not None.
overage?
Type:
boolean |
IResolvable
(optional)
Indicates whether overages are allowed.
value?
Type:
string
(optional)
Entitlement resource.
Use only if the unit is None.