Class: Aws::OpenSearchService::Types::DescribeDomainAutoTunesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DescribeDomainAutoTunesResponse
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
The result of a DescribeDomainAutoTunes
request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_tunes ⇒ Array<Types::AutoTune>
The list of setting adjustments that Auto-Tune has made to the domain.
-
#next_token ⇒ String
When
nextToken
is returned, there are more results available.
Instance Attribute Details
#auto_tunes ⇒ Array<Types::AutoTune>
The list of setting adjustments that Auto-Tune has made to the domain.
2327 2328 2329 2330 2331 2332 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2327 class DescribeDomainAutoTunesResponse < Struct.new( :auto_tunes, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When nextToken
is returned, there are more results available. The
value of nextToken
is a unique pagination token for each page.
Send the request again using the returned token to retrieve the next
page.
2327 2328 2329 2330 2331 2332 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2327 class DescribeDomainAutoTunesResponse < Struct.new( :auto_tunes, :next_token) SENSITIVE = [] include Aws::Structure end |