Class: Aws::ElasticsearchService::Types::CompatibleVersionsMap

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

Overview

A map from an ‘ ElasticsearchVersion ` to a list of compatible ` ElasticsearchVersion ` s to which the domain can be upgraded.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#source_versionString

The current version of Elasticsearch on which a domain is.

Returns:

  • (String)


743
744
745
746
747
748
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 743

class CompatibleVersionsMap < Struct.new(
  :source_version,
  :target_versions)
  SENSITIVE = []
  include Aws::Structure
end

#target_versionsArray<String>

List of supported elastic search versions.

Returns:

  • (Array<String>)


743
744
745
746
747
748
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 743

class CompatibleVersionsMap < Struct.new(
  :source_version,
  :target_versions)
  SENSITIVE = []
  include Aws::Structure
end