Module Values.S3ResultItemSource

These are the items returned in the results of a search of Amazon S3 backup metadata.

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

    These are items in the returned results that match recovery point Amazon Resource Names (ARN) input during a search of Amazon S3 backup metadata.

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

    These are items in the returned results that match source Amazon Resource Names (ARN) input during a search of Amazon S3 backup metadata.

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

    The name of the backup vault.

    *)
  4. objectKey : ObjectKey.t option;
    (*

    This is one or more items returned in the results of a search of Amazon S3 backup metadata that match the values input for object key.

    *)
  5. objectSize : Long.t option;
    (*

    These are items in the returned results that match values for object size(s) input during a search of Amazon S3 backup metadata.

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

    These are one or more items in the returned results that match values for item creation time input during a search of Amazon S3 backup metadata.

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

    These are one or more items in the returned results that match values for ETags input during a search of Amazon S3 backup metadata.

    *)
  8. versionId : String_.t option;
    (*

    These are one or more items in the returned results that match values for version IDs input during a search of Amazon S3 backup metadata.

    *)
}
Sourceval make : ?backupResourceArn:??? -> ?sourceResourceArn:??? -> ?backupVaultName:??? -> ?objectKey:??? -> ?objectSize:??? -> ?creationTime:??? -> ?eTag:??? -> ?versionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `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