Module Values.GrantedLicenseSource

Describes a license that is granted to a grantee.

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;
    (*

    Granted license issuer.

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

    Home Region of the granted license.

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

    Granted license status.

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

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

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

    Granted 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;
    (*

    Granted license metadata.

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

    Creation time of the granted license.

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

    Version of the granted license.

    *)
  15. receivedMetadata : ReceivedMetadata.t option;
    (*

    Granted license received metadata.

    *)
}
Sourceval make : ?licenseArn:??? -> ?licenseName:??? -> ?productName:??? -> ?productSKU:??? -> ?issuer:??? -> ?homeRegion:??? -> ?status:??? -> ?validity:??? -> ?beneficiary:??? -> ?entitlements:??? -> ?consumptionConfiguration:??? -> ?licenseMetadata:??? -> ?createTime:??? -> ?version:??? -> ?receivedMetadata:??? -> 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 | `List of [> `Enum of string ] list | `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