Class: Aws::OpenSearchService::Types::DomainInfo

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

Overview

Information about an OpenSearch Service domain.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#domain_nameString

Name of the domain.

Returns:

  • (String)


3374
3375
3376
3377
3378
3379
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3374

class DomainInfo < Struct.new(
  :domain_name,
  :engine_type)
  SENSITIVE = []
  include Aws::Structure
end

#engine_typeString

The type of search engine that the domain is running.‘OpenSearch` for an OpenSearch engine, or `Elasticsearch` for a legacy Elasticsearch OSS engine.

Returns:

  • (String)


3374
3375
3376
3377
3378
3379
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3374

class DomainInfo < Struct.new(
  :domain_name,
  :engine_type)
  SENSITIVE = []
  include Aws::Structure
end