Module Values.GetResourceRequestStatusOutputSource

Returns the current status of a resource operation request. For more information, see Tracking the progress of resource operation requests in the Amazon Web Services Cloud Control API User Guide.

Sourcetype nonrec t = {
  1. progressEvent : ProgressEvent.t option;
    (*

    Represents the current status of the resource operation request.

    *)
  2. hooksProgressEvent : HooksProgressEvent.t option;
    (*

    Lists Hook invocations for the specified target in the request. This is a list since the same target can invoke multiple Hooks.

    *)
}
Sourcetype nonrec error = [
  1. | `RequestTokenNotFoundException of RequestTokenNotFoundException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?progressEvent:??? -> ?hooksProgressEvent:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `RequestTokenNotFoundException of RequestTokenNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `RequestTokenNotFoundException of RequestTokenNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TypeName.t | `Timestamp of Timestamp.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of TypeName.t | `Timestamp of Timestamp.t ]) 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