Class: Aws::Kendra::Types::UserContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::UserContext
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass UserContext data as a hash:
{
token: "Token",
}
Provides information about the user context for a Amazon Kendra index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#token ⇒ String
The user context token.
Instance Attribute Details
#token ⇒ String
The user context token. It must be a JWT or a JSON token.
6723 6724 6725 6726 6727 |
# File 'lib/aws-sdk-kendra/types.rb', line 6723 class UserContext < Struct.new( :token) SENSITIVE = [] include Aws::Structure end |