Module Values.PutApplicationAccessScopeRequestSource

Adds or updates the list of authorized targets for an IAM Identity Center access scope for an application.

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

    Specifies the name of the access scope to be associated with the specified targets.

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

    Specifies an array list of ARNs that represent the authorized targets for this access scope.

    *)
  3. applicationArn : ApplicationArn.t;
    (*

    Specifies the ARN of the application with the access scope with the targets to add or update.

    *)
}
Sourceval context_ : string
Sourceval make : ?authorizedTargets:??? -> scope:Scope.t -> applicationArn:ApplicationArn.t -> 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