Interface DescribeDryRunProgressResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDryRunProgressResponse.Builder,DescribeDryRunProgressResponse>
,OpenSearchResponse.Builder
,SdkBuilder<DescribeDryRunProgressResponse.Builder,DescribeDryRunProgressResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDryRunProgressResponse
public static interface DescribeDryRunProgressResponse.Builder extends OpenSearchResponse.Builder, SdkPojo, CopyableBuilder<DescribeDryRunProgressResponse.Builder,DescribeDryRunProgressResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DescribeDryRunProgressResponse.Builder
dryRunConfig(Consumer<DomainStatus.Builder> dryRunConfig)
Details about the changes you're planning to make on the domain.DescribeDryRunProgressResponse.Builder
dryRunConfig(DomainStatus dryRunConfig)
Details about the changes you're planning to make on the domain.default DescribeDryRunProgressResponse.Builder
dryRunProgressStatus(Consumer<DryRunProgressStatus.Builder> dryRunProgressStatus)
The current status of the dry run, including any validation errors.DescribeDryRunProgressResponse.Builder
dryRunProgressStatus(DryRunProgressStatus dryRunProgressStatus)
The current status of the dry run, including any validation errors.default DescribeDryRunProgressResponse.Builder
dryRunResults(Consumer<DryRunResults.Builder> dryRunResults)
The results of the dry run.DescribeDryRunProgressResponse.Builder
dryRunResults(DryRunResults dryRunResults)
The results of the dry run.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dryRunProgressStatus
DescribeDryRunProgressResponse.Builder dryRunProgressStatus(DryRunProgressStatus dryRunProgressStatus)
The current status of the dry run, including any validation errors.
- Parameters:
dryRunProgressStatus
- The current status of the dry run, including any validation errors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRunProgressStatus
default DescribeDryRunProgressResponse.Builder dryRunProgressStatus(Consumer<DryRunProgressStatus.Builder> dryRunProgressStatus)
The current status of the dry run, including any validation errors.
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)
-
dryRunConfig
DescribeDryRunProgressResponse.Builder dryRunConfig(DomainStatus dryRunConfig)
Details about the changes you're planning to make on the domain.
- Parameters:
dryRunConfig
- Details about the changes you're planning to make on the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRunConfig
default DescribeDryRunProgressResponse.Builder dryRunConfig(Consumer<DomainStatus.Builder> dryRunConfig)
Details about the changes you're planning to make on the domain.
This is a convenience method that creates an instance of theDomainStatus.Builder
avoiding the need to create one manually viaDomainStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todryRunConfig(DomainStatus)
.- Parameters:
dryRunConfig
- a consumer that will call methods onDomainStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dryRunConfig(DomainStatus)
-
dryRunResults
DescribeDryRunProgressResponse.Builder dryRunResults(DryRunResults dryRunResults)
The results of the dry run.
- Parameters:
dryRunResults
- The results of the dry run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dryRunResults
default DescribeDryRunProgressResponse.Builder dryRunResults(Consumer<DryRunResults.Builder> dryRunResults)
The results of the dry run.
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)
-
-