Module Values_2.UpdateDataSetPermissionsRequestSource

Updates the permissions on a dataset. The permissions resource is arn:aws:quicksight:region:aws-account-id:dataset/data-set-id.

Sourcetype nonrec t = {
  1. awsAccountId : Values_1.AwsAccountId.t;
    (*

    The Amazon Web Services account ID.

    *)
  2. dataSetId : Values_1.ResourceId.t;
    (*

    The ID for the dataset whose permissions you want to update. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.

    *)
  3. grantPermissions : Values_1.ResourcePermissionList.t option;
    (*

    The resource permissions that you want to grant to the dataset.

    *)
  4. revokePermissions : Values_1.ResourcePermissionList.t option;
    (*

    The resource permissions that you want to revoke from the dataset.

    *)
}
Sourceval context_ : string
Sourceval make : ?grantPermissions:??? -> ?revokePermissions:??? -> awsAccountId:Values_1.AwsAccountId.t -> dataSetId:Values_1.ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ] list | `String of Values_1.AwsAccountId.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