Class: Aws::OpenSearchService::Types::JWTOptionsInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#enabledBoolean

True to enable JWT authentication and authorization for a domain.

Returns:

  • (Boolean)


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_keyString

Element of the JWT assertion used by the cluster to verify JWT signatures.

Returns:

  • (String)


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_keyString

Element of the JWT assertion to use for roles.

Returns:

  • (String)


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_keyString

Element of the JWT assertion to use for the user name.

Returns:

  • (String)


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