Interface AutoTuneOptionsStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AutoTuneOptionsStatus.Builder,AutoTuneOptionsStatus>
,SdkBuilder<AutoTuneOptionsStatus.Builder,AutoTuneOptionsStatus>
,SdkPojo
- Enclosing class:
- AutoTuneOptionsStatus
public static interface AutoTuneOptionsStatus.Builder extends SdkPojo, CopyableBuilder<AutoTuneOptionsStatus.Builder,AutoTuneOptionsStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AutoTuneOptionsStatus.Builder
options(Consumer<AutoTuneOptions.Builder> options)
Specifies Auto-Tune options for the specified Elasticsearch domain.AutoTuneOptionsStatus.Builder
options(AutoTuneOptions options)
Specifies Auto-Tune options for the specified Elasticsearch domain.default AutoTuneOptionsStatus.Builder
status(Consumer<AutoTuneStatus.Builder> status)
Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.AutoTuneOptionsStatus.Builder
status(AutoTuneStatus status)
Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
options
AutoTuneOptionsStatus.Builder options(AutoTuneOptions options)
Specifies Auto-Tune options for the specified Elasticsearch domain.
- Parameters:
options
- Specifies Auto-Tune options for the specified Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
default AutoTuneOptionsStatus.Builder options(Consumer<AutoTuneOptions.Builder> options)
Specifies Auto-Tune options for the specified Elasticsearch domain.
This is a convenience method that creates an instance of theAutoTuneOptions.Builder
avoiding the need to create one manually viaAutoTuneOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooptions(AutoTuneOptions)
.- Parameters:
options
- a consumer that will call methods onAutoTuneOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
options(AutoTuneOptions)
-
status
AutoTuneOptionsStatus.Builder status(AutoTuneStatus status)
Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.
- Parameters:
status
- Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
default AutoTuneOptionsStatus.Builder status(Consumer<AutoTuneStatus.Builder> status)
Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.
This is a convenience method that creates an instance of theAutoTuneStatus.Builder
avoiding the need to create one manually viaAutoTuneStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostatus(AutoTuneStatus)
.- Parameters:
status
- a consumer that will call methods onAutoTuneStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
status(AutoTuneStatus)
-
-