Class: Aws::ElasticsearchService::Types::ListElasticsearchInstanceTypesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ListElasticsearchInstanceTypesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
When making an API call, you may pass ListElasticsearchInstanceTypesRequest data as a hash:
{
elasticsearch_version: "ElasticsearchVersionString", # required
domain_name: "DomainName",
max_results: 1,
next_token: "NextToken",
}
Container for the parameters to the ` ListElasticsearchInstanceTypes ` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
DomainName represents the name of the Domain that we are trying to modify.
-
#elasticsearch_version ⇒ String
Version of Elasticsearch for which list of supported elasticsearch instance types are needed.
-
#max_results ⇒ Integer
Set this value to limit the number of results returned.
-
#next_token ⇒ String
NextToken should be sent in case if earlier API call produced result containing NextToken.
Instance Attribute Details
#domain_name ⇒ String
DomainName represents the name of the Domain that we are trying to modify. This should be present only if we are querying for list of available Elasticsearch instance types when modifying existing domain.
3208 3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3208 class ListElasticsearchInstanceTypesRequest < Struct.new( :elasticsearch_version, :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#elasticsearch_version ⇒ String
Version of Elasticsearch for which list of supported elasticsearch instance types are needed.
3208 3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3208 class ListElasticsearchInstanceTypesRequest < Struct.new( :elasticsearch_version, :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Set this value to limit the number of results returned. Value provided must be greater than 30 else it wont be honored.
3208 3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3208 class ListElasticsearchInstanceTypesRequest < Struct.new( :elasticsearch_version, :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
NextToken should be sent in case if earlier API call produced result containing NextToken. It is used for pagination.
3208 3209 3210 3211 3212 3213 3214 3215 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3208 class ListElasticsearchInstanceTypesRequest < Struct.new( :elasticsearch_version, :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |