Class CfnLicense.EntitlementProperty
Describes a resource entitled for use with a license.
Inheritance
System.Object
CfnLicense.EntitlementProperty
Implements
Namespace: Amazon.CDK.AWS.LicenseManager
Assembly: Amazon.CDK.AWS.LicenseManager.dll
Syntax (csharp)
public class EntitlementProperty : Object, CfnLicense.IEntitlementProperty
Syntax (vb)
Public Class EntitlementProperty
Inherits Object
Implements CfnLicense.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
Constructors
EntitlementProperty() |
Properties
AllowCheckIn | Indicates whether check-ins are allowed. |
MaxCount | Maximum entitlement count. |
Name | Entitlement name. |
Overage | Indicates whether overages are allowed. |
Unit | Entitlement unit. |
Value | Entitlement resource. |
Constructors
EntitlementProperty()
public EntitlementProperty()
Properties
AllowCheckIn
Indicates whether check-ins are allowed.
public object AllowCheckIn { get; set; }
Property Value
System.Object
Remarks
MaxCount
Maximum entitlement count.
public Nullable<double> MaxCount { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
Name
Entitlement name.
public string Name { get; set; }
Property Value
System.String
Remarks
Overage
Indicates whether overages are allowed.
public object Overage { get; set; }
Property Value
System.Object
Remarks
Unit
Entitlement unit.
public string Unit { get; set; }
Property Value
System.String
Remarks
Value
Entitlement resource.
public string Value { get; set; }
Property Value
System.String