Class: Aws::Kendra::Types::Principal
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::Principal
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides user and group information for [user context filtering].
[1]: docs.aws.amazon.com/kendra/latest/dg/user-context-filter.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access ⇒ String
Whether to allow or deny document access to the principal.
-
#data_source_id ⇒ String
The identifier of the data source the principal should access documents from.
-
#name ⇒ String
The name of the user or group.
-
#type ⇒ String
The type of principal.
Instance Attribute Details
#access ⇒ String
Whether to allow or deny document access to the principal.
7703 7704 7705 7706 7707 7708 7709 7710 |
# File 'lib/aws-sdk-kendra/types.rb', line 7703 class Principal < Struct.new( :name, :type, :access, :data_source_id) SENSITIVE = [] include Aws::Structure end |
#data_source_id ⇒ String
The identifier of the data source the principal should access documents from.
7703 7704 7705 7706 7707 7708 7709 7710 |
# File 'lib/aws-sdk-kendra/types.rb', line 7703 class Principal < Struct.new( :name, :type, :access, :data_source_id) SENSITIVE = [] include Aws::Structure end |