Module Values.UpdateQAppPermissionsInputSource

Updates read permissions for a Amazon Q App in Amazon Q Business application environment instance.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The unique identifier of the Amazon Q Business application environment instance.

    *)
  2. appId : UUID.t;
    (*

    The unique identifier of the Amazon Q App for which permissions are being updated.

    *)
  3. grantPermissions : UpdateQAppPermissionsInputGrantPermissionsList.t option;
    (*

    The list of permissions to grant for the Amazon Q App.

    *)
  4. revokePermissions : UpdateQAppPermissionsInputRevokePermissionsList.t option;
    (*

    The list of permissions to revoke for the Amazon Q App.

    *)
}
Sourceval context_ : string
Sourceval make : ?grantPermissions:??? -> ?revokePermissions:??? -> instanceId:InstanceId.t -> appId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of PermissionInputPrincipalString.t ]) list ] list | `String of InstanceId.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