Class: Aws::OpenSearchService::Types::JWTOptionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::JWTOptionsInput
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
The JWT authentication and authorization configuration for an Amazon OpenSearch Service domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
True to enable JWT authentication and authorization for a domain.
-
#public_key ⇒ String
Element of the JWT assertion used by the cluster to verify JWT signatures.
-
#roles_key ⇒ String
Element of the JWT assertion to use for roles.
-
#subject_key ⇒ String
Element of the JWT assertion to use for the user name.
Instance Attribute Details
#enabled ⇒ Boolean
True to enable JWT authentication and authorization for a domain.
4052 4053 4054 4055 4056 4057 4058 4059 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4052 class JWTOptionsInput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |
#public_key ⇒ String
Element of the JWT assertion used by the cluster to verify JWT signatures.
4052 4053 4054 4055 4056 4057 4058 4059 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4052 class JWTOptionsInput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |
#roles_key ⇒ String
Element of the JWT assertion to use for roles.
4052 4053 4054 4055 4056 4057 4058 4059 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4052 class JWTOptionsInput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |
#subject_key ⇒ String
Element of the JWT assertion to use for the user name.
4052 4053 4054 4055 4056 4057 4058 4059 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4052 class JWTOptionsInput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |