Interface CfnLicense.IEntitlementProperty
Describes a resource entitled for use with a license.
Namespace: Amazon.CDK.AWS.LicenseManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEntitlementProperty
Syntax (vb)
Public Interface IEntitlementProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LicenseManager;
var entitlementProperty = new EntitlementProperty {
Name = "name",
Unit = "unit",
// the properties below are optional
AllowCheckIn = false,
MaxCount = 123,
Overage = false,
Value = "value"
};
Synopsis
Properties
Allow |
Indicates whether check-ins are allowed. |
Max |
Maximum entitlement count. |
Name | Entitlement name. |
Overage | Indicates whether overages are allowed. |
Unit | Entitlement unit. |
Value | Entitlement resource. |
Properties
AllowCheckIn
Indicates whether check-ins are allowed.
virtual object AllowCheckIn { get; }
Property Value
System.
Remarks
MaxCount
Maximum entitlement count.
virtual Nullable<double> MaxCount { get; }
Property Value
System.
Remarks
Name
Entitlement name.
string Name { get; }
Property Value
System.
Remarks
Overage
Indicates whether overages are allowed.
virtual object Overage { get; }
Property Value
System.
Remarks
Unit
Entitlement unit.
string Unit { get; }
Property Value
System.
Remarks
Value
Entitlement resource.
virtual string Value { get; }
Property Value
System.