Class: Aws::Kendra::Types::AclConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::AclConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass AclConfiguration data as a hash:
{
allowed_groups_column_name: "ColumnName", # required
}
Provides information about the column that should be used for filtering the query response by groups.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_groups_column_name ⇒ String
A list of groups, separated by semi-colons, that filters a query response based on user context.
Instance Attribute Details
#allowed_groups_column_name ⇒ String
A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the `UserContext` field of the Query operation.
69 70 71 72 73 |
# File 'lib/aws-sdk-kendra/types.rb', line 69 class AclConfiguration < Struct.new( :allowed_groups_column_name) SENSITIVE = [] include Aws::Structure end |