Interface ListContactEvaluationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,ConnectResponse.Builder
,CopyableBuilder<ListContactEvaluationsResponse.Builder,ListContactEvaluationsResponse>
,SdkBuilder<ListContactEvaluationsResponse.Builder,ListContactEvaluationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListContactEvaluationsResponse
public static interface ListContactEvaluationsResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<ListContactEvaluationsResponse.Builder,ListContactEvaluationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListContactEvaluationsResponse.Builder
evaluationSummaryList(Collection<EvaluationSummary> evaluationSummaryList)
Provides details about a list of contact evaluations belonging to an instance.ListContactEvaluationsResponse.Builder
evaluationSummaryList(Consumer<EvaluationSummary.Builder>... evaluationSummaryList)
Provides details about a list of contact evaluations belonging to an instance.ListContactEvaluationsResponse.Builder
evaluationSummaryList(EvaluationSummary... evaluationSummaryList)
Provides details about a list of contact evaluations belonging to an instance.ListContactEvaluationsResponse.Builder
nextToken(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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
evaluationSummaryList
ListContactEvaluationsResponse.Builder evaluationSummaryList(Collection<EvaluationSummary> evaluationSummaryList)
Provides details about a list of contact evaluations belonging to an instance.
- Parameters:
evaluationSummaryList
- Provides details about a list of contact evaluations belonging to an instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evaluationSummaryList
ListContactEvaluationsResponse.Builder evaluationSummaryList(EvaluationSummary... evaluationSummaryList)
Provides details about a list of contact evaluations belonging to an instance.
- Parameters:
evaluationSummaryList
- Provides details about a list of contact evaluations belonging to an instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evaluationSummaryList
ListContactEvaluationsResponse.Builder evaluationSummaryList(Consumer<EvaluationSummary.Builder>... evaluationSummaryList)
Provides details about a list of contact evaluations belonging to an instance.
This is a convenience method that creates an instance of theEvaluationSummary.Builder
avoiding the need to create one manually viaEvaluationSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#evaluationSummaryList(List
.) - Parameters:
evaluationSummaryList
- a consumer that will call methods onEvaluationSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#evaluationSummaryList(java.util.Collection
)
-
nextToken
ListContactEvaluationsResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
This is always returned as null in the response.
- Parameters:
nextToken
- If there are additional results, this is the token for the next set of results.This is always returned as null in the response.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-