Class: Aws::OpenSearchService::Types::JWTOptionsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::JWTOptionsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Describes the JWT options configured for the domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
True if JWT use is enabled.
-
#public_key ⇒ String
The key used to verify the signature of incoming JWT requests.
-
#roles_key ⇒ String
The key used for matching the JWT roles attribute.
-
#subject_key ⇒ String
The key used for matching the JWT subject attribute.
Instance Attribute Details
#enabled ⇒ Boolean
True if JWT use is enabled.
4877 4878 4879 4880 4881 4882 4883 4884 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4877 class JWTOptionsOutput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |
#public_key ⇒ String
The key used to verify the signature of incoming JWT requests.
4877 4878 4879 4880 4881 4882 4883 4884 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4877 class JWTOptionsOutput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |
#roles_key ⇒ String
The key used for matching the JWT roles attribute.
4877 4878 4879 4880 4881 4882 4883 4884 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4877 class JWTOptionsOutput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |
#subject_key ⇒ String
The key used for matching the JWT subject attribute.
4877 4878 4879 4880 4881 4882 4883 4884 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4877 class JWTOptionsOutput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |