interface EntitlementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LicenseManager.Mixins.CfnLicensePropsMixin.EntitlementProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslicensemanager/mixins#CfnLicensePropsMixin_EntitlementProperty |
Java | software.amazon.awscdk.mixins.preview.services.licensemanager.mixins.CfnLicensePropsMixin.EntitlementProperty |
Python | aws_cdk.mixins_preview.aws_licensemanager.mixins.CfnLicensePropsMixin.EntitlementProperty |
TypeScript | @aws-cdk/mixins-preview » aws_licensemanager » mixins » CfnLicensePropsMixin » 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 { mixins as licensemanager_mixins } from '@aws-cdk/mixins-preview/aws-licensemanager';
const entitlementProperty: licensemanager_mixins.CfnLicensePropsMixin.EntitlementProperty = {
allowCheckIn: false,
maxCount: 123,
name: 'name',
overage: false,
unit: 'unit',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | boolean | IResolvable | Indicates whether check-ins are allowed. |
| max | number | Maximum entitlement count. |
| name? | string | Entitlement name. |
| overage? | boolean | IResolvable | Indicates whether overages are allowed. |
| unit? | string | Entitlement unit. |
| value? | string | Entitlement resource. |
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.
name?
Type:
string
(optional)
Entitlement name.
overage?
Type:
boolean | IResolvable
(optional)
Indicates whether overages are allowed.
unit?
Type:
string
(optional)
Entitlement unit.
value?
Type:
string
(optional)
Entitlement resource.
Use only if the unit is None.

.NET
Go
Java
Python
TypeScript