Interface DescribeDomainNodesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDomainNodesResponse.Builder,DescribeDomainNodesResponse>
,OpenSearchResponse.Builder
,SdkBuilder<DescribeDomainNodesResponse.Builder,DescribeDomainNodesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDomainNodesResponse
public static interface DescribeDomainNodesResponse.Builder extends OpenSearchResponse.Builder, SdkPojo, CopyableBuilder<DescribeDomainNodesResponse.Builder,DescribeDomainNodesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDomainNodesResponse.Builder
domainNodesStatusList(Collection<DomainNodesStatus> domainNodesStatusList)
Contains nodes information listDomainNodesStatusList
with details about the all nodes on the requested domain.DescribeDomainNodesResponse.Builder
domainNodesStatusList(Consumer<DomainNodesStatus.Builder>... domainNodesStatusList)
Contains nodes information listDomainNodesStatusList
with details about the all nodes on the requested domain.DescribeDomainNodesResponse.Builder
domainNodesStatusList(DomainNodesStatus... domainNodesStatusList)
Contains nodes information listDomainNodesStatusList
with details about the all nodes on the requested domain.-
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
-
domainNodesStatusList
DescribeDomainNodesResponse.Builder domainNodesStatusList(Collection<DomainNodesStatus> domainNodesStatusList)
Contains nodes information list
DomainNodesStatusList
with details about the all nodes on the requested domain.- Parameters:
domainNodesStatusList
- Contains nodes information listDomainNodesStatusList
with details about the all nodes on the requested domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainNodesStatusList
DescribeDomainNodesResponse.Builder domainNodesStatusList(DomainNodesStatus... domainNodesStatusList)
Contains nodes information list
DomainNodesStatusList
with details about the all nodes on the requested domain.- Parameters:
domainNodesStatusList
- Contains nodes information listDomainNodesStatusList
with details about the all nodes on the requested domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainNodesStatusList
DescribeDomainNodesResponse.Builder domainNodesStatusList(Consumer<DomainNodesStatus.Builder>... domainNodesStatusList)
Contains nodes information list
This is a convenience method that creates an instance of theDomainNodesStatusList
with details about the all nodes on the requested domain.DomainNodesStatus.Builder
avoiding the need to create one manually viaDomainNodesStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#domainNodesStatusList(List
.) - Parameters:
domainNodesStatusList
- a consumer that will call methods onDomainNodesStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#domainNodesStatusList(java.util.Collection
)
-
-