Interface ElasticsearchClusterConfigStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ElasticsearchClusterConfigStatus.Builder,ElasticsearchClusterConfigStatus>,SdkBuilder<ElasticsearchClusterConfigStatus.Builder,ElasticsearchClusterConfigStatus>,SdkPojo
- Enclosing class:
- ElasticsearchClusterConfigStatus
@Mutable @NotThreadSafe public static interface ElasticsearchClusterConfigStatus.Builder extends SdkPojo, CopyableBuilder<ElasticsearchClusterConfigStatus.Builder,ElasticsearchClusterConfigStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ElasticsearchClusterConfigStatus.Builderoptions(Consumer<ElasticsearchClusterConfig.Builder> options)Specifies the cluster configuration for the specified Elasticsearch domain.ElasticsearchClusterConfigStatus.Builderoptions(ElasticsearchClusterConfig options)Specifies the cluster configuration for the specified Elasticsearch domain.default ElasticsearchClusterConfigStatus.Builderstatus(Consumer<OptionStatus.Builder> status)Specifies the status of the configuration for the specified Elasticsearch domain.ElasticsearchClusterConfigStatus.Builderstatus(OptionStatus status)Specifies the status of the configuration 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
options
ElasticsearchClusterConfigStatus.Builder options(ElasticsearchClusterConfig options)
Specifies the cluster configuration for the specified Elasticsearch domain.
- Parameters:
options- Specifies the cluster configuration for the specified Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
default ElasticsearchClusterConfigStatus.Builder options(Consumer<ElasticsearchClusterConfig.Builder> options)
Specifies the cluster configuration for the specified Elasticsearch domain.
This is a convenience method that creates an instance of theElasticsearchClusterConfig.Builderavoiding the need to create one manually viaElasticsearchClusterConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooptions(ElasticsearchClusterConfig).- Parameters:
options- a consumer that will call methods onElasticsearchClusterConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
options(ElasticsearchClusterConfig)
-
status
ElasticsearchClusterConfigStatus.Builder status(OptionStatus status)
Specifies the status of the configuration for the specified Elasticsearch domain.
- Parameters:
status- Specifies the status of the configuration for the specified Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
default ElasticsearchClusterConfigStatus.Builder status(Consumer<OptionStatus.Builder> status)
Specifies the status of the configuration for the specified Elasticsearch domain.
This is a convenience method that creates an instance of theOptionStatus.Builderavoiding the need to create one manually viaOptionStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostatus(OptionStatus).- Parameters:
status- a consumer that will call methods onOptionStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
status(OptionStatus)
-
-