Class: Aws::ElasticsearchService::Types::ListElasticsearchInstanceTypesResponse

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

Overview

Container for the parameters returned by ‘ ListElasticsearchInstanceTypes ` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#elasticsearch_instance_typesArray<String>

List of instance types supported by Amazon Elasticsearch service for given ‘ ElasticsearchVersion `

Returns:

  • (Array<String>)


2839
2840
2841
2842
2843
2844
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2839

class ListElasticsearchInstanceTypesResponse < Struct.new(
  :elasticsearch_instance_types,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

In case if there are more results available NextToken would be present, make further request to the same API with received NextToken to paginate remaining results.

Returns:

  • (String)


2839
2840
2841
2842
2843
2844
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2839

class ListElasticsearchInstanceTypesResponse < Struct.new(
  :elasticsearch_instance_types,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end