Class: Aws::OpenSearchService::Types::JWTOptionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::JWTOptionsInput
- Includes:
- Structure
- Defined in:
- 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.
4643 4644 4645 4646 4647 4648 4649 4650 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4643 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.
4643 4644 4645 4646 4647 4648 4649 4650 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4643 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.
4643 4644 4645 4646 4647 4648 4649 4650 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4643 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.
4643 4644 4645 4646 4647 4648 4649 4650 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4643 class JWTOptionsInput < Struct.new( :enabled, :subject_key, :roles_key, :public_key) SENSITIVE = [] include Aws::Structure end |