Interface ListAssociatedContactsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectResponse.Builder,CopyableBuilder<ListAssociatedContactsResponse.Builder,ListAssociatedContactsResponse>,SdkBuilder<ListAssociatedContactsResponse.Builder,ListAssociatedContactsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAssociatedContactsResponse
public static interface ListAssociatedContactsResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<ListAssociatedContactsResponse.Builder,ListAssociatedContactsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAssociatedContactsResponse.BuildercontactSummaryList(Collection<AssociatedContactSummary> contactSummaryList)List of the contact summary for all the contacts in contact tree associated with unique identifier.ListAssociatedContactsResponse.BuildercontactSummaryList(Consumer<AssociatedContactSummary.Builder>... contactSummaryList)List of the contact summary for all the contacts in contact tree associated with unique identifier.ListAssociatedContactsResponse.BuildercontactSummaryList(AssociatedContactSummary... contactSummaryList)List of the contact summary for all the contacts in contact tree associated with unique identifier.ListAssociatedContactsResponse.BuildernextToken(String nextToken)If there are additional results, this is the token for the next set of results.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
contactSummaryList
ListAssociatedContactsResponse.Builder contactSummaryList(Collection<AssociatedContactSummary> contactSummaryList)
List of the contact summary for all the contacts in contact tree associated with unique identifier.
- Parameters:
contactSummaryList- List of the contact summary for all the contacts in contact tree associated with unique identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contactSummaryList
ListAssociatedContactsResponse.Builder contactSummaryList(AssociatedContactSummary... contactSummaryList)
List of the contact summary for all the contacts in contact tree associated with unique identifier.
- Parameters:
contactSummaryList- List of the contact summary for all the contacts in contact tree associated with unique identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contactSummaryList
ListAssociatedContactsResponse.Builder contactSummaryList(Consumer<AssociatedContactSummary.Builder>... contactSummaryList)
List of the contact summary for all the contacts in contact tree associated with unique identifier.
This is a convenience method that creates an instance of theAssociatedContactSummary.Builderavoiding the need to create one manually viaAssociatedContactSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#contactSummaryList(List.) - Parameters:
contactSummaryList- a consumer that will call methods onAssociatedContactSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#contactSummaryList(java.util.Collection)
-
nextToken
ListAssociatedContactsResponse.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.
-
-