Module Values.ResourceScopesSource

Defines the data boundary for a resources query. Scopes determine which organizational units or organizations to retrieve data from.

Sourcetype nonrec t = {
  1. awsOrganizations : AwsOrganizationScopeList.t option;
    (*

    A list of Organizations scopes to include in the query results. Each entry in the list specifies an organization or organizational unit to include for the delegated administrator's account. If the list specifies multiple entries, the entries are combined using OR logic.

    *)
}
Sourceval make : ?awsOrganizations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] 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