Interface UpdateDomainConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateDomainConfigResponse.Builder,UpdateDomainConfigResponse>
,OpenSearchResponse.Builder
,SdkBuilder<UpdateDomainConfigResponse.Builder,UpdateDomainConfigResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- UpdateDomainConfigResponse
public static interface UpdateDomainConfigResponse.Builder extends OpenSearchResponse.Builder, SdkPojo, CopyableBuilder<UpdateDomainConfigResponse.Builder,UpdateDomainConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateDomainConfigResponse.Builder
domainConfig(Consumer<DomainConfig.Builder> domainConfig)
The status of the updated domain.UpdateDomainConfigResponse.Builder
domainConfig(DomainConfig domainConfig)
The status of the updated domain.default UpdateDomainConfigResponse.Builder
dryRunProgressStatus(Consumer<DryRunProgressStatus.Builder> dryRunProgressStatus)
The status of the dry run being performed on the domain, if any.UpdateDomainConfigResponse.Builder
dryRunProgressStatus(DryRunProgressStatus dryRunProgressStatus)
The status of the dry run being performed on the domain, if any.default UpdateDomainConfigResponse.Builder
dryRunResults(Consumer<DryRunResults.Builder> dryRunResults)
Results of the dry run performed in the update domain request.UpdateDomainConfigResponse.Builder
dryRunResults(DryRunResults dryRunResults)
Results of the dry run performed in the update domain request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.opensearch.model.OpenSearchResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
domainConfig
UpdateDomainConfigResponse.Builder domainConfig(DomainConfig domainConfig)
The status of the updated domain.
- Parameters:
domainConfig
- The status of the updated domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainConfig
default UpdateDomainConfigResponse.Builder domainConfig(Consumer<DomainConfig.Builder> domainConfig)
The status of the updated domain.
This is a convenience method that creates an instance of theDomainConfig.Builder
avoiding the need to create one manually viaDomainConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todomainConfig(DomainConfig)
.- Parameters:
domainConfig
- a consumer that will call methods onDomainConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
domainConfig(DomainConfig)
-
dryRunResults
UpdateDomainConfigResponse.Builder dryRunResults(DryRunResults dryRunResults)
Results of the dry run performed in the update domain request.
- Parameters:
dryRunResults
- Results of the dry run performed in the update domain request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRunResults
default UpdateDomainConfigResponse.Builder dryRunResults(Consumer<DryRunResults.Builder> dryRunResults)
Results of the dry run performed in the update domain request.
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)
-
dryRunProgressStatus
UpdateDomainConfigResponse.Builder dryRunProgressStatus(DryRunProgressStatus dryRunProgressStatus)
The status of the dry run being performed on the domain, if any.
- Parameters:
dryRunProgressStatus
- The status of the dry run being performed on the domain, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRunProgressStatus
default UpdateDomainConfigResponse.Builder dryRunProgressStatus(Consumer<DryRunProgressStatus.Builder> dryRunProgressStatus)
The status of the dry run being performed on the domain, if any.
This is a convenience method that creates an instance of theDryRunProgressStatus.Builder
avoiding the need to create one manually viaDryRunProgressStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todryRunProgressStatus(DryRunProgressStatus)
.- Parameters:
dryRunProgressStatus
- a consumer that will call methods onDryRunProgressStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dryRunProgressStatus(DryRunProgressStatus)
-
-