Class: Aws::OpenSearchService::Types::JWTOptionsOutput

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

Instance Attribute Details

#enabledBoolean

True if JWT use is enabled.

Returns:

  • (Boolean)


4076
4077
4078
4079
4080
4081
4082
4083
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4076

class JWTOptionsOutput < Struct.new(
  :enabled,
  :subject_key,
  :roles_key,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end

#public_keyString

The key used to verify the signature of incoming JWT requests.

Returns:

  • (String)


4076
4077
4078
4079
4080
4081
4082
4083
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4076

class JWTOptionsOutput < Struct.new(
  :enabled,
  :subject_key,
  :roles_key,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end

#roles_keyString

The key used for matching the JWT roles attribute.

Returns:

  • (String)


4076
4077
4078
4079
4080
4081
4082
4083
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4076

class JWTOptionsOutput < Struct.new(
  :enabled,
  :subject_key,
  :roles_key,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end

#subject_keyString

The key used for matching the JWT subject attribute.

Returns:

  • (String)


4076
4077
4078
4079
4080
4081
4082
4083
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4076

class JWTOptionsOutput < Struct.new(
  :enabled,
  :subject_key,
  :roles_key,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end