Class: Aws::ElasticsearchService::Types::ListElasticsearchInstanceTypesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ListElasticsearchInstanceTypesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
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.
2941 2942 2943 2944 2945 2946 2947 2948 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2941 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.
2941 2942 2943 2944 2945 2946 2947 2948 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2941 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.
2941 2942 2943 2944 2945 2946 2947 2948 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2941 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.
2941 2942 2943 2944 2945 2946 2947 2948 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2941 class ListElasticsearchInstanceTypesRequest < Struct.new( :elasticsearch_version, :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |