Interface RealTimeContactAnalysisPointOfInterest.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<RealTimeContactAnalysisPointOfInterest.Builder,
,RealTimeContactAnalysisPointOfInterest> SdkBuilder<RealTimeContactAnalysisPointOfInterest.Builder,
,RealTimeContactAnalysisPointOfInterest> SdkPojo
- Enclosing class:
RealTimeContactAnalysisPointOfInterest
@Mutable
@NotThreadSafe
public static interface RealTimeContactAnalysisPointOfInterest.Builder
extends SdkPojo, CopyableBuilder<RealTimeContactAnalysisPointOfInterest.Builder,RealTimeContactAnalysisPointOfInterest>
-
Method Summary
Modifier and TypeMethodDescriptiontranscriptItems
(Collection<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets> transcriptItems) List of the transcript items (segments) that are associated with a given point of interest.transcriptItems
(Consumer<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets.Builder>... transcriptItems) List of the transcript items (segments) that are associated with a given point of interest.transcriptItems
(RealTimeContactAnalysisTranscriptItemWithCharacterOffsets... transcriptItems) List of the transcript items (segments) that are associated with a given point of interest.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
-
Method Details
-
transcriptItems
RealTimeContactAnalysisPointOfInterest.Builder transcriptItems(Collection<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets> transcriptItems) List of the transcript items (segments) that are associated with a given point of interest.
- Parameters:
transcriptItems
- List of the transcript items (segments) that are associated with a given point of interest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptItems
RealTimeContactAnalysisPointOfInterest.Builder transcriptItems(RealTimeContactAnalysisTranscriptItemWithCharacterOffsets... transcriptItems) List of the transcript items (segments) that are associated with a given point of interest.
- Parameters:
transcriptItems
- List of the transcript items (segments) that are associated with a given point of interest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptItems
RealTimeContactAnalysisPointOfInterest.Builder transcriptItems(Consumer<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets.Builder>... transcriptItems) List of the transcript items (segments) that are associated with a given point of interest.
This is a convenience method that creates an instance of theRealTimeContactAnalysisTranscriptItemWithCharacterOffsets.Builder
avoiding the need to create one manually viaRealTimeContactAnalysisTranscriptItemWithCharacterOffsets.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totranscriptItems(List<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets>)
.- Parameters:
transcriptItems
- a consumer that will call methods onRealTimeContactAnalysisTranscriptItemWithCharacterOffsets.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-