Module Values.ScopeDetailsSource

A structure that describes an IAM Identity Center access scope and its authorized targets.

Sourcetype nonrec t = {
  1. scope : Scope.t option;
    (*

    The name of the access scope.

    *)
  2. authorizedTargets : ScopeTargets.t option;
    (*

    An array list of ARNs of applications.

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