Module Values_1.ColumnLevelPermissionRuleSource

A rule defined to grant access on one or more restricted columns. Each dataset can have multiple rules. To create a restricted column, you add it to one or more rules. Each rule must contain at least one column and at least one user or group. To be able to see a restricted column, a user or group needs to be added to a rule for that column.

Sourcetype nonrec t = {
  1. principals : PrincipalList.t option;
    (*

    An array of Amazon Resource Names (ARNs) for Quick Sight users or groups.

    *)
  2. columnNames : ColumnLevelPermissionRuleColumnNameList.t option;
    (*

    An array of column names.

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