import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::LicenseManager::License */ export declare class License extends pulumi.CustomResource { /** * Get an existing License resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): License; /** * Returns true if the given object is an instance of License. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is License; /** * Beneficiary of the license. */ readonly beneficiary: pulumi.Output; /** * Configuration for consumption of the license. */ readonly consumptionConfiguration: pulumi.Output; /** * License entitlements. */ readonly entitlements: pulumi.Output; /** * Home region for the created license. */ readonly homeRegion: pulumi.Output; /** * License issuer. */ readonly issuer: pulumi.Output; /** * Amazon Resource Name is a unique name for each resource. */ readonly licenseArn: pulumi.Output; /** * License metadata. */ readonly licenseMetadata: pulumi.Output; /** * Name for the created license. */ readonly licenseName: pulumi.Output; /** * Product name for the created license. */ readonly productName: pulumi.Output; /** * ProductSKU of the license. */ readonly productSku: pulumi.Output; /** * License status. */ readonly status: pulumi.Output; /** * A list of tags to attach. */ readonly tags: pulumi.Output; /** * Date and time range during which the license is valid, in ISO8601-UTC format. */ readonly validity: pulumi.Output; /** * The version of the license. */ readonly version: pulumi.Output; /** * Create a License resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LicenseArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a License resource. */ export interface LicenseArgs { /** * Beneficiary of the license. */ beneficiary: pulumi.Input; /** * Configuration for consumption of the license. */ consumptionConfiguration: pulumi.Input; /** * License entitlements. */ entitlements: pulumi.Input[]>; /** * Home region for the created license. */ homeRegion: pulumi.Input; /** * License issuer. */ issuer: pulumi.Input; /** * License metadata. */ licenseMetadata?: pulumi.Input[]>; /** * Name for the created license. */ licenseName?: pulumi.Input; /** * Product name for the created license. */ productName: pulumi.Input; /** * ProductSKU of the license. */ productSku: pulumi.Input; /** * License status. */ status?: pulumi.Input; /** * A list of tags to attach. */ tags?: pulumi.Input[]>; /** * Date and time range during which the license is valid, in ISO8601-UTC format. */ validity: pulumi.Input; }