Module Values.LicenseSource

Software license that is managed in License Manager.

Sourcetype nonrec t = {
  1. licenseArn : Arn.t option;
    (*

    Amazon Resource Name (ARN) of the license.

    *)
  2. licenseName : String_.t option;
    (*

    License name.

    *)
  3. productName : String_.t option;
    (*

    Product name.

    *)
  4. productSKU : String_.t option;
    (*

    Product SKU.

    *)
  5. issuer : IssuerDetails.t option;
    (*

    License issuer.

    *)
  6. homeRegion : String_.t option;
    (*

    Home Region of the license.

    *)
  7. status : LicenseStatus.t option;
    (*

    License status.

    *)
  8. validity : DatetimeRange.t option;
    (*

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

    *)
  9. beneficiary : String_.t option;
    (*

    License beneficiary.

    *)
  10. entitlements : EntitlementList.t option;
    (*

    License entitlements.

    *)
  11. consumptionConfiguration : ConsumptionConfiguration.t option;
    (*

    Configuration for consumption of the license.

    *)
  12. licenseMetadata : MetadataList.t option;
    (*

    License metadata.

    *)
  13. createTime : ISO8601DateTime.t option;
    (*

    License creation time.

    *)
  14. version : String_.t option;
    (*

    License version.

    *)
}
Sourceval make : ?licenseArn:??? -> ?licenseName:??? -> ?productName:??? -> ?productSKU:??? -> ?issuer:??? -> ?homeRegion:??? -> ?status:??? -> ?validity:??? -> ?beneficiary:??? -> ?entitlements:??? -> ?consumptionConfiguration:??? -> ?licenseMetadata:??? -> ?createTime:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of BoxBoolean.t | `Enum of string | `Long of Long.t | `String of String_.t ]) list ] list | `String of Arn.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Boolean of BoxBoolean.t | `Integer of BoxInteger.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t