Module Values.SearchJobBackupsResultSource

This contains the information about recovery points returned in results of a search job.

Sourcetype nonrec t = {
  1. status : SearchJobState.t option;
    (*

    This is the status of the search job backup result.

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

    This is the status message included with the results.

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

    This is the resource type of the search.

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

    The Amazon Resource Name (ARN) that uniquely identifies the backup resources.

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

    The Amazon Resource Name (ARN) that uniquely identifies the source resources.

    *)
  6. indexCreationTime : Timestamp.t option;
    (*

    This is the creation time of the backup index.

    *)
  7. backupCreationTime : Timestamp.t option;
    (*

    This is the creation time of the backup (recovery point).

    *)
}
Sourceval make : ?status:??? -> ?statusMessage:??? -> ?resourceType:??? -> ?backupResourceArn:??? -> ?sourceResourceArn:??? -> ?indexCreationTime:??? -> ?backupCreationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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