CfnLicenseProps

class aws_cdk.aws_licensemanager.CfnLicenseProps(*, consumption_configuration, entitlements, home_region, issuer, license_name, product_name, validity, beneficiary=None, license_metadata=None, product_sku=None, status=None)

Bases: object

Properties for defining a CfnLicense.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_licensemanager as licensemanager

cfn_license_props = licensemanager.CfnLicenseProps(
    consumption_configuration=licensemanager.CfnLicense.ConsumptionConfigurationProperty(
        borrow_configuration=licensemanager.CfnLicense.BorrowConfigurationProperty(
            allow_early_check_in=False,
            max_time_to_live_in_minutes=123
        ),
        provisional_configuration=licensemanager.CfnLicense.ProvisionalConfigurationProperty(
            max_time_to_live_in_minutes=123
        ),
        renew_type="renewType"
    ),
    entitlements=[licensemanager.CfnLicense.EntitlementProperty(
        name="name",
        unit="unit",

        # the properties below are optional
        allow_check_in=False,
        max_count=123,
        overage=False,
        value="value"
    )],
    home_region="homeRegion",
    issuer=licensemanager.CfnLicense.IssuerDataProperty(
        name="name",

        # the properties below are optional
        sign_key="signKey"
    ),
    license_name="licenseName",
    product_name="productName",
    validity=licensemanager.CfnLicense.ValidityDateFormatProperty(
        begin="begin",
        end="end"
    ),

    # the properties below are optional
    beneficiary="beneficiary",
    license_metadata=[licensemanager.CfnLicense.MetadataProperty(
        name="name",
        value="value"
    )],
    product_sku="productSku",
    status="status"
)

Attributes

beneficiary

License beneficiary.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-beneficiary

consumption_configuration

Configuration for consumption of the license.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-consumptionconfiguration

entitlements

License entitlements.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-entitlements

home_region

Home Region of the license.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-homeregion

issuer

License issuer.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-issuer

license_metadata

License metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-licensemetadata

license_name

License name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-licensename

product_name

Product name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-productname

product_sku

Product SKU.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-productsku

status

License status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-status

validity

Date and time range during which the license is valid, in ISO8601-UTC format.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-license.html#cfn-licensemanager-license-validity