Module Values.SearchScopeSource

The search scope is all backup properties input into a search.

Sourcetype nonrec t = {
  1. backupResourceTypes : ResourceTypeList.t;
    (*

    The resource types included in a search. Eligible resource types include S3 and EBS.

    *)
  2. backupResourceCreationTime : BackupCreationTimeFilter.t option;
    (*

    This is the time a backup resource was created.

    *)
  3. sourceResourceArns : ResourceArnList.t option;
    (*

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

    *)
  4. backupResourceArns : RecoveryPointArnList.t option;
    (*

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

    *)
  5. backupResourceTags : TagMap.t option;
    (*

    These are one or more tags on the backup (recovery point).

    *)
}
Sourceval context_ : string
Sourceval make : ?backupResourceCreationTime:??? -> ?sourceResourceArns:??? -> ?backupResourceArns:??? -> ?backupResourceTags:??? -> backupResourceTypes:ResourceTypeList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of String_.t ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `Structure of (string * [> `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