Class: Aws::Kendra::Types::UserTokenConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::UserTokenConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass UserTokenConfiguration data as a hash:
{
jwt_token_type_configuration: {
key_location: "URL", # required, accepts URL, SECRET_MANAGER
url: "Url",
secret_manager_arn: "RoleArn",
user_name_attribute_field: "UserNameAttributeField",
group_attribute_field: "GroupAttributeField",
issuer: "Issuer",
claim_regex: "ClaimRegex",
},
json_token_type_configuration: {
user_name_attribute_field: "String", # required
group_attribute_field: "String", # required
},
}
Provides configuration information for a token configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#json_token_type_configuration ⇒ Types::JsonTokenTypeConfiguration
Information about the JSON token type configuration.
-
#jwt_token_type_configuration ⇒ Types::JwtTokenTypeConfiguration
Information about the JWT token type configuration.
Instance Attribute Details
#json_token_type_configuration ⇒ Types::JsonTokenTypeConfiguration
Information about the JSON token type configuration.
6760 6761 6762 6763 6764 6765 |
# File 'lib/aws-sdk-kendra/types.rb', line 6760 class UserTokenConfiguration < Struct.new( :jwt_token_type_configuration, :json_token_type_configuration) SENSITIVE = [] include Aws::Structure end |
#jwt_token_type_configuration ⇒ Types::JwtTokenTypeConfiguration
Information about the JWT token type configuration.
6760 6761 6762 6763 6764 6765 |
# File 'lib/aws-sdk-kendra/types.rb', line 6760 class UserTokenConfiguration < Struct.new( :jwt_token_type_configuration, :json_token_type_configuration) SENSITIVE = [] include Aws::Structure end |