Interface SearchQuickConnectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectResponse.Builder,CopyableBuilder<SearchQuickConnectsResponse.Builder,SearchQuickConnectsResponse>,SdkBuilder<SearchQuickConnectsResponse.Builder,SearchQuickConnectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchQuickConnectsResponse
public static interface SearchQuickConnectsResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<SearchQuickConnectsResponse.Builder,SearchQuickConnectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchQuickConnectsResponse.BuilderapproximateTotalCount(Long approximateTotalCount)The total number of quick connects which matched your search query.SearchQuickConnectsResponse.BuildernextToken(String nextToken)If there are additional results, this is the token for the next set of results.SearchQuickConnectsResponse.BuilderquickConnects(Collection<QuickConnect> quickConnects)Information about the quick connects.SearchQuickConnectsResponse.BuilderquickConnects(Consumer<QuickConnect.Builder>... quickConnects)Information about the quick connects.SearchQuickConnectsResponse.BuilderquickConnects(QuickConnect... quickConnects)Information about the quick connects.-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectResponse.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
-
quickConnects
SearchQuickConnectsResponse.Builder quickConnects(Collection<QuickConnect> quickConnects)
Information about the quick connects.
- Parameters:
quickConnects- Information about the quick connects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quickConnects
SearchQuickConnectsResponse.Builder quickConnects(QuickConnect... quickConnects)
Information about the quick connects.
- Parameters:
quickConnects- Information about the quick connects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quickConnects
SearchQuickConnectsResponse.Builder quickConnects(Consumer<QuickConnect.Builder>... quickConnects)
Information about the quick connects.
This is a convenience method that creates an instance of theQuickConnect.Builderavoiding the need to create one manually viaQuickConnect.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#quickConnects(List.) - Parameters:
quickConnects- a consumer that will call methods onQuickConnect.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#quickConnects(java.util.Collection)
-
nextToken
SearchQuickConnectsResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
- Parameters:
nextToken- If there are additional results, this is the token for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
approximateTotalCount
SearchQuickConnectsResponse.Builder approximateTotalCount(Long approximateTotalCount)
The total number of quick connects which matched your search query.
- Parameters:
approximateTotalCount- The total number of quick connects which matched your search query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-