Module Values.LicenseOperationFailureSource

Describes the failure of a license operation.

Sourcetype nonrec t = {
  1. resourceArn : String_.t option;
    (*

    Amazon Resource Name (ARN) of the resource.

    *)
  2. resourceType : ResourceType.t option;
    (*

    Resource type.

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

    Error message.

    *)
  4. failureTime : DateTime.t option;
    (*

    Failure time.

    *)
  5. operationName : String_.t option;
    (*

    Name of the operation.

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

    ID of the Amazon Web Services account that owns the resource.

    *)
  7. operationRequestedBy : String_.t option;
    (*

    The requester is "License Manager Automated Discovery".

    *)
  8. metadataList : MetadataList.t option;
    (*

    Reserved.

    *)
}
Sourceval make : ?resourceArn:??? -> ?resourceType:??? -> ?errorMessage:??? -> ?failureTime:??? -> ?operationName:??? -> ?resourceOwnerId:??? -> ?operationRequestedBy:??? -> ?metadataList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `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