Interface RealTimeContactAnalysisIssueDetected.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RealTimeContactAnalysisIssueDetected.Builder,RealTimeContactAnalysisIssueDetected>,SdkBuilder<RealTimeContactAnalysisIssueDetected.Builder,RealTimeContactAnalysisIssueDetected>,SdkPojo
- Enclosing class:
- RealTimeContactAnalysisIssueDetected
public static interface RealTimeContactAnalysisIssueDetected.Builder extends SdkPojo, CopyableBuilder<RealTimeContactAnalysisIssueDetected.Builder,RealTimeContactAnalysisIssueDetected>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealTimeContactAnalysisIssueDetected.BuildertranscriptItems(Collection<RealTimeContactAnalysisTranscriptItemWithContent> transcriptItems)List of the transcript items (segments) that are associated with a given issue.RealTimeContactAnalysisIssueDetected.BuildertranscriptItems(Consumer<RealTimeContactAnalysisTranscriptItemWithContent.Builder>... transcriptItems)List of the transcript items (segments) that are associated with a given issue.RealTimeContactAnalysisIssueDetected.BuildertranscriptItems(RealTimeContactAnalysisTranscriptItemWithContent... transcriptItems)List of the transcript items (segments) that are associated with a given issue.-
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
RealTimeContactAnalysisIssueDetected.Builder transcriptItems(Collection<RealTimeContactAnalysisTranscriptItemWithContent> transcriptItems)
List of the transcript items (segments) that are associated with a given issue.
- Parameters:
transcriptItems- List of the transcript items (segments) that are associated with a given issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptItems
RealTimeContactAnalysisIssueDetected.Builder transcriptItems(RealTimeContactAnalysisTranscriptItemWithContent... transcriptItems)
List of the transcript items (segments) that are associated with a given issue.
- Parameters:
transcriptItems- List of the transcript items (segments) that are associated with a given issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptItems
RealTimeContactAnalysisIssueDetected.Builder transcriptItems(Consumer<RealTimeContactAnalysisTranscriptItemWithContent.Builder>... transcriptItems)
List of the transcript items (segments) that are associated with a given issue.
This is a convenience method that creates an instance of theRealTimeContactAnalysisTranscriptItemWithContent.Builderavoiding the need to create one manually viaRealTimeContactAnalysisTranscriptItemWithContent.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 onRealTimeContactAnalysisTranscriptItemWithContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#transcriptItems(java.util.Collection)
-
-