Interface DescribeDomainAutoTunesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDomainAutoTunesResponse.Builder,DescribeDomainAutoTunesResponse>
,ElasticsearchResponse.Builder
,SdkBuilder<DescribeDomainAutoTunesResponse.Builder,DescribeDomainAutoTunesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDomainAutoTunesResponse
public static interface DescribeDomainAutoTunesResponse.Builder extends ElasticsearchResponse.Builder, SdkPojo, CopyableBuilder<DescribeDomainAutoTunesResponse.Builder,DescribeDomainAutoTunesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDomainAutoTunesResponse.Builder
autoTunes(Collection<AutoTune> autoTunes)
Specifies the list of setting adjustments that Auto-Tune has made to the domain.DescribeDomainAutoTunesResponse.Builder
autoTunes(Consumer<AutoTune.Builder>... autoTunes)
Specifies the list of setting adjustments that Auto-Tune has made to the domain.DescribeDomainAutoTunesResponse.Builder
autoTunes(AutoTune... autoTunes)
Specifies the list of setting adjustments that Auto-Tune has made to the domain.DescribeDomainAutoTunesResponse.Builder
nextToken(String nextToken)
Specifies an identifier to allow retrieval of paginated results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticsearch.model.ElasticsearchResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
autoTunes
DescribeDomainAutoTunesResponse.Builder autoTunes(Collection<AutoTune> autoTunes)
Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
- Parameters:
autoTunes
- Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoTunes
DescribeDomainAutoTunesResponse.Builder autoTunes(AutoTune... autoTunes)
Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
- Parameters:
autoTunes
- Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoTunes
DescribeDomainAutoTunesResponse.Builder autoTunes(Consumer<AutoTune.Builder>... autoTunes)
Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
This is a convenience method that creates an instance of theAutoTune.Builder
avoiding the need to create one manually viaAutoTune.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#autoTunes(List
.) - Parameters:
autoTunes
- a consumer that will call methods onAutoTune.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#autoTunes(java.util.Collection
)
-
nextToken
DescribeDomainAutoTunesResponse.Builder nextToken(String nextToken)
Specifies an identifier to allow retrieval of paginated results.
- Parameters:
nextToken
- Specifies an identifier to allow retrieval of paginated results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-