Interface UpdateElasticsearchDomainConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateElasticsearchDomainConfigResponse.Builder,UpdateElasticsearchDomainConfigResponse>
,ElasticsearchResponse.Builder
,SdkBuilder<UpdateElasticsearchDomainConfigResponse.Builder,UpdateElasticsearchDomainConfigResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- UpdateElasticsearchDomainConfigResponse
public static interface UpdateElasticsearchDomainConfigResponse.Builder extends ElasticsearchResponse.Builder, SdkPojo, CopyableBuilder<UpdateElasticsearchDomainConfigResponse.Builder,UpdateElasticsearchDomainConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateElasticsearchDomainConfigResponse.Builder
domainConfig(Consumer<ElasticsearchDomainConfig.Builder> domainConfig)
The status of the updated Elasticsearch domain.UpdateElasticsearchDomainConfigResponse.Builder
domainConfig(ElasticsearchDomainConfig domainConfig)
The status of the updated Elasticsearch domain.default UpdateElasticsearchDomainConfigResponse.Builder
dryRunResults(Consumer<DryRunResults.Builder> dryRunResults)
Contains result of DryRun.UpdateElasticsearchDomainConfigResponse.Builder
dryRunResults(DryRunResults dryRunResults)
Contains result of DryRun.-
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
-
domainConfig
UpdateElasticsearchDomainConfigResponse.Builder domainConfig(ElasticsearchDomainConfig domainConfig)
The status of the updated Elasticsearch domain.
- Parameters:
domainConfig
- The status of the updated Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainConfig
default UpdateElasticsearchDomainConfigResponse.Builder domainConfig(Consumer<ElasticsearchDomainConfig.Builder> domainConfig)
The status of the updated Elasticsearch domain.
This is a convenience method that creates an instance of theElasticsearchDomainConfig.Builder
avoiding the need to create one manually viaElasticsearchDomainConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todomainConfig(ElasticsearchDomainConfig)
.- Parameters:
domainConfig
- a consumer that will call methods onElasticsearchDomainConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
domainConfig(ElasticsearchDomainConfig)
-
dryRunResults
UpdateElasticsearchDomainConfigResponse.Builder dryRunResults(DryRunResults dryRunResults)
Contains result of DryRun.
- Parameters:
dryRunResults
- Contains result of DryRun.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRunResults
default UpdateElasticsearchDomainConfigResponse.Builder dryRunResults(Consumer<DryRunResults.Builder> dryRunResults)
Contains result of DryRun.
This is a convenience method that creates an instance of theDryRunResults.Builder
avoiding the need to create one manually viaDryRunResults.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todryRunResults(DryRunResults)
.- Parameters:
dryRunResults
- a consumer that will call methods onDryRunResults.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dryRunResults(DryRunResults)
-
-