Module Values.LicenseConversionTaskSource

Information about a license type conversion task.

Sourcetype nonrec t = {
  1. licenseConversionTaskId : LicenseConversionTaskId.t option;
    (*

    The ID of the license type conversion task.

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

    The Amazon Resource Name (ARN) of the resource associated with the license type conversion task.

    *)
  3. sourceLicenseContext : LicenseConversionContext.t option;
    (*

    Information about the license type this conversion task converted from.

    *)
  4. destinationLicenseContext : LicenseConversionContext.t option;
    (*

    Information about the license type this conversion task converted to.

    *)
  5. status : LicenseConversionTaskStatus.t option;
    (*

    The status of the conversion task.

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

    The status message for the conversion task.

    *)
  7. startTime : DateTime.t option;
    (*

    The time the conversion task was started at.

    *)
  8. licenseConversionTime : DateTime.t option;
    (*

    The time the usage operation value of the resource was changed.

    *)
  9. endTime : DateTime.t option;
    (*

    The time the conversion task was completed.

    *)
}
Sourceval make : ?licenseConversionTaskId:??? -> ?resourceArn:??? -> ?sourceLicenseContext:??? -> ?destinationLicenseContext:??? -> ?status:??? -> ?statusMessage:??? -> ?startTime:??? -> ?licenseConversionTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LicenseConversionTaskId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ProductCodeId.t ]) list ] list | `String of UsageOperation.t ]) list | `Timestamp of DateTime.t ]) 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