Class: Aws::OpenSearchService::Types::AppConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-opensearchservice/types.rb

Overview

Configurations of the OpenSearch Application.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Specify the item to configure, such as admin role for the OpenSearch Application.

Returns:

  • (String)


428
429
430
431
432
433
# File 'lib/aws-sdk-opensearchservice/types.rb', line 428

class AppConfig < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

Specifies the value to configure for the key, such as an IAM user ARN.

Returns:

  • (String)


428
429
430
431
432
433
# File 'lib/aws-sdk-opensearchservice/types.rb', line 428

class AppConfig < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end