aws-cdk-lib.aws_licensemanager.CfnLicense.EntitlementProperty

interface EntitlementProperty

LanguageType name
.NETAmazon.CDK.AWS.LicenseManager.CfnLicense.EntitlementProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslicensemanager#CfnLicense_EntitlementProperty
Javasoftware.amazon.awscdk.services.licensemanager.CfnLicense.EntitlementProperty
Pythonaws_cdk.aws_licensemanager.CfnLicense.EntitlementProperty
TypeScript 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

NameTypeDescription
namestringEntitlement name.
unitstringEntitlement unit.
allowCheckIn?boolean | IResolvableIndicates whether check-ins are allowed.
maxCount?numberMaximum entitlement count.
overage?boolean | IResolvableIndicates whether overages are allowed.
value?stringEntitlement 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.