Interface ListDomainNamesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListDomainNamesResponse.Builder,ListDomainNamesResponse>
,ElasticsearchResponse.Builder
,SdkBuilder<ListDomainNamesResponse.Builder,ListDomainNamesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListDomainNamesResponse
public static interface ListDomainNamesResponse.Builder extends ElasticsearchResponse.Builder, SdkPojo, CopyableBuilder<ListDomainNamesResponse.Builder,ListDomainNamesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDomainNamesResponse.Builder
domainNames(Collection<DomainInfo> domainNames)
List of domain names and respective engine types.ListDomainNamesResponse.Builder
domainNames(Consumer<DomainInfo.Builder>... domainNames)
List of domain names and respective engine types.ListDomainNamesResponse.Builder
domainNames(DomainInfo... domainNames)
List of domain names and respective engine types.-
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
-
domainNames
ListDomainNamesResponse.Builder domainNames(Collection<DomainInfo> domainNames)
List of domain names and respective engine types.
- Parameters:
domainNames
- List of domain names and respective engine types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainNames
ListDomainNamesResponse.Builder domainNames(DomainInfo... domainNames)
List of domain names and respective engine types.
- Parameters:
domainNames
- List of domain names and respective engine types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainNames
ListDomainNamesResponse.Builder domainNames(Consumer<DomainInfo.Builder>... domainNames)
List of domain names and respective engine types.
This is a convenience method that creates an instance of theDomainInfo.Builder
avoiding the need to create one manually viaDomainInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#domainNames(List
.) - Parameters:
domainNames
- a consumer that will call methods onDomainInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#domainNames(java.util.Collection
)
-
-