Class: Aws::Kendra::Types::Principal
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::Principal
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Provides user and group information for user context filtering.
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.
7745 7746 7747 7748 7749 7750 7751 7752 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 7745 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.
7745 7746 7747 7748 7749 7750 7751 7752 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 7745 class Principal < Struct.new( :name, :type, :access, :data_source_id) SENSITIVE = [] include Aws::Structure end |