Module Values.EBSResultItemSource

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

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

    These are one or more items in the results that match values for the Amazon Resource Name (ARN) of recovery points returned in a search of Amazon EBS backup metadata.

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

    These are one or more items in the results that match values for the Amazon Resource Name (ARN) of source resources returned in a search of Amazon EBS backup metadata.

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

    The name of the backup vault.

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

    These are one or more items in the results that match values for file systems returned in a search of Amazon EBS backup metadata.

    *)
  5. filePath : FilePath.t option;
    (*

    These are one or more items in the results that match values for file paths returned in a search of Amazon EBS backup metadata.

    *)
  6. fileSize : Long.t option;
    (*

    These are one or more items in the results that match values for file sizes returned in a search of Amazon EBS backup metadata.

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

    These are one or more items in the results that match values for creation times returned in a search of Amazon EBS backup metadata.

    *)
  8. lastModifiedTime : Timestamp.t option;
    (*

    These are one or more items in the results that match values for Last Modified Time returned in a search of Amazon EBS backup metadata.

    *)
}
Sourceval make : ?backupResourceArn:??? -> ?sourceResourceArn:??? -> ?backupVaultName:??? -> ?fileSystemIdentifier:??? -> ?filePath:??? -> ?fileSize:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> 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