Interface RealTimeContactAnalysisPointOfInterest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RealTimeContactAnalysisPointOfInterest.Builder,RealTimeContactAnalysisPointOfInterest>,SdkBuilder<RealTimeContactAnalysisPointOfInterest.Builder,RealTimeContactAnalysisPointOfInterest>,SdkPojo
- Enclosing class:
- RealTimeContactAnalysisPointOfInterest
public static interface RealTimeContactAnalysisPointOfInterest.Builder extends SdkPojo, CopyableBuilder<RealTimeContactAnalysisPointOfInterest.Builder,RealTimeContactAnalysisPointOfInterest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealTimeContactAnalysisPointOfInterest.BuildertranscriptItems(Collection<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets> transcriptItems)List of the transcript items (segments) that are associated with a given point of interest.RealTimeContactAnalysisPointOfInterest.BuildertranscriptItems(Consumer<RealTimeContactAnalysisTranscriptItemWithCharacterOffsets.Builder>... transcriptItems)List of the transcript items (segments) that are associated with a given point of interest.RealTimeContactAnalysisPointOfInterest.BuildertranscriptItems(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, sdkFields
-
-
-
-
Method Detail
-
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.Builderavoiding the need to create one manually viaRealTimeContactAnalysisTranscriptItemWithCharacterOffsets.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#transcriptItems(List.) - 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:
#transcriptItems(java.util.Collection)
-
-