Interface ListDomainNamesResponse.Builder
-
- All Superinterfaces:
AppSyncResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListDomainNamesResponse.Builder,ListDomainNamesResponse>,SdkBuilder<ListDomainNamesResponse.Builder,ListDomainNamesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListDomainNamesResponse
public static interface ListDomainNamesResponse.Builder extends AppSyncResponse.Builder, SdkPojo, CopyableBuilder<ListDomainNamesResponse.Builder,ListDomainNamesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDomainNamesResponse.BuilderdomainNameConfigs(Collection<DomainNameConfig> domainNameConfigs)Lists configurations for multiple domain names.ListDomainNamesResponse.BuilderdomainNameConfigs(Consumer<DomainNameConfig.Builder>... domainNameConfigs)Lists configurations for multiple domain names.ListDomainNamesResponse.BuilderdomainNameConfigs(DomainNameConfig... domainNameConfigs)Lists configurations for multiple domain names.ListDomainNamesResponse.BuildernextToken(String nextToken)An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.-
Methods inherited from interface software.amazon.awssdk.services.appsync.model.AppSyncResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
domainNameConfigs
ListDomainNamesResponse.Builder domainNameConfigs(Collection<DomainNameConfig> domainNameConfigs)
Lists configurations for multiple domain names.
- Parameters:
domainNameConfigs- Lists configurations for multiple domain names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainNameConfigs
ListDomainNamesResponse.Builder domainNameConfigs(DomainNameConfig... domainNameConfigs)
Lists configurations for multiple domain names.
- Parameters:
domainNameConfigs- Lists configurations for multiple domain names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainNameConfigs
ListDomainNamesResponse.Builder domainNameConfigs(Consumer<DomainNameConfig.Builder>... domainNameConfigs)
Lists configurations for multiple domain names.
This is a convenience method that creates an instance of theDomainNameConfig.Builderavoiding the need to create one manually viaDomainNameConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#domainNameConfigs(List.) - Parameters:
domainNameConfigs- a consumer that will call methods onDomainNameConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#domainNameConfigs(java.util.Collection)
-
nextToken
ListDomainNamesResponse.Builder nextToken(String nextToken)
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
- Parameters:
nextToken- An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-