Interface CancelDomainConfigChangeResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CancelDomainConfigChangeResponse.Builder,CancelDomainConfigChangeResponse>,OpenSearchResponse.Builder,SdkBuilder<CancelDomainConfigChangeResponse.Builder,CancelDomainConfigChangeResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CancelDomainConfigChangeResponse
@Mutable @NotThreadSafe public static interface CancelDomainConfigChangeResponse.Builder extends OpenSearchResponse.Builder, SdkPojo, CopyableBuilder<CancelDomainConfigChangeResponse.Builder,CancelDomainConfigChangeResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CancelDomainConfigChangeResponse.BuildercancelledChangeIds(String... cancelledChangeIds)The unique identifiers of the changes that were cancelled.CancelDomainConfigChangeResponse.BuildercancelledChangeIds(Collection<String> cancelledChangeIds)The unique identifiers of the changes that were cancelled.CancelDomainConfigChangeResponse.BuildercancelledChangeProperties(Collection<CancelledChangeProperty> cancelledChangeProperties)The domain change properties that were cancelled.CancelDomainConfigChangeResponse.BuildercancelledChangeProperties(Consumer<CancelledChangeProperty.Builder>... cancelledChangeProperties)The domain change properties that were cancelled.CancelDomainConfigChangeResponse.BuildercancelledChangeProperties(CancelledChangeProperty... cancelledChangeProperties)The domain change properties that were cancelled.CancelDomainConfigChangeResponse.BuilderdryRun(Boolean dryRun)Whether or not the request was a 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
-
cancelledChangeIds
CancelDomainConfigChangeResponse.Builder cancelledChangeIds(Collection<String> cancelledChangeIds)
The unique identifiers of the changes that were cancelled.
- Parameters:
cancelledChangeIds- The unique identifiers of the changes that were cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelledChangeIds
CancelDomainConfigChangeResponse.Builder cancelledChangeIds(String... cancelledChangeIds)
The unique identifiers of the changes that were cancelled.
- Parameters:
cancelledChangeIds- The unique identifiers of the changes that were cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelledChangeProperties
CancelDomainConfigChangeResponse.Builder cancelledChangeProperties(Collection<CancelledChangeProperty> cancelledChangeProperties)
The domain change properties that were cancelled.
- Parameters:
cancelledChangeProperties- The domain change properties that were cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelledChangeProperties
CancelDomainConfigChangeResponse.Builder cancelledChangeProperties(CancelledChangeProperty... cancelledChangeProperties)
The domain change properties that were cancelled.
- Parameters:
cancelledChangeProperties- The domain change properties that were cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelledChangeProperties
CancelDomainConfigChangeResponse.Builder cancelledChangeProperties(Consumer<CancelledChangeProperty.Builder>... cancelledChangeProperties)
The domain change properties that were cancelled.
This is a convenience method that creates an instance of theCancelledChangeProperty.Builderavoiding the need to create one manually viaCancelledChangeProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#cancelledChangeProperties(List.) - Parameters:
cancelledChangeProperties- a consumer that will call methods onCancelledChangeProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#cancelledChangeProperties(java.util.Collection)
-
dryRun
CancelDomainConfigChangeResponse.Builder dryRun(Boolean dryRun)
Whether or not the request was a dry run. If
True, the changes were not actually cancelled.- Parameters:
dryRun- Whether or not the request was a dry run. IfTrue, the changes were not actually cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-