Class: Aws::ElasticsearchService::Types::DescribeDomainAutoTunesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::DescribeDomainAutoTunesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Note:
When making an API call, you may pass DescribeDomainAutoTunesRequest data as a hash:
{
domain_name: "DomainName", # required
max_results: 1,
next_token: "NextToken",
}
Container for the parameters to the `DescribeDomainAutoTunes` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
Specifies the domain name for which you want Auto-Tune action details.
-
#max_results ⇒ Integer
Set this value to limit the number of results returned.
-
#next_token ⇒ String
NextToken is sent in case the earlier API call results contain the NextToken.
Instance Attribute Details
#domain_name ⇒ String
Specifies the domain name for which you want Auto-Tune action details.
1368 1369 1370 1371 1372 1373 1374 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1368 class DescribeDomainAutoTunesRequest < Struct.new( :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Set this value to limit the number of results returned. If not specified, defaults to 100.
1368 1369 1370 1371 1372 1373 1374 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1368 class DescribeDomainAutoTunesRequest < Struct.new( :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
1368 1369 1370 1371 1372 1373 1374 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1368 class DescribeDomainAutoTunesRequest < Struct.new( :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |