Class: Aws::Kendra::Types::AclConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::AclConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
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` API.
74 75 76 77 78 |
# File 'lib/aws-sdk-kendra/types.rb', line 74 class AclConfiguration < Struct.new( :allowed_groups_column_name) SENSITIVE = [] include Aws::Structure end |