Interface Transcript.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Transcript.Builder,Transcript>,SdkBuilder<Transcript.Builder,Transcript>,SdkPojo
- Enclosing class:
- Transcript
@Mutable @NotThreadSafe public static interface Transcript.Builder extends SdkPojo, CopyableBuilder<Transcript.Builder,Transcript>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Transcript.Buildercriteria(Collection<TranscriptCriteria> criteria)The list of search criteria based on Contact Lens conversational analytics transcript.Transcript.Buildercriteria(Consumer<TranscriptCriteria.Builder>... criteria)The list of search criteria based on Contact Lens conversational analytics transcript.Transcript.Buildercriteria(TranscriptCriteria... criteria)The list of search criteria based on Contact Lens conversational analytics transcript.Transcript.BuildermatchType(String matchType)The match type combining search criteria using multiple transcript criteria.Transcript.BuildermatchType(SearchContactsMatchType matchType)The match type combining search criteria using multiple transcript criteria.-
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 Detail
-
criteria
Transcript.Builder criteria(Collection<TranscriptCriteria> criteria)
The list of search criteria based on Contact Lens conversational analytics transcript.
- Parameters:
criteria- The list of search criteria based on Contact Lens conversational analytics transcript.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
criteria
Transcript.Builder criteria(TranscriptCriteria... criteria)
The list of search criteria based on Contact Lens conversational analytics transcript.
- Parameters:
criteria- The list of search criteria based on Contact Lens conversational analytics transcript.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
criteria
Transcript.Builder criteria(Consumer<TranscriptCriteria.Builder>... criteria)
The list of search criteria based on Contact Lens conversational analytics transcript.
This is a convenience method that creates an instance of theTranscriptCriteria.Builderavoiding the need to create one manually viaTranscriptCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#criteria(List.) - Parameters:
criteria- a consumer that will call methods onTranscriptCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#criteria(java.util.Collection)
-
matchType
Transcript.Builder matchType(String matchType)
The match type combining search criteria using multiple transcript criteria.
- Parameters:
matchType- The match type combining search criteria using multiple transcript criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchContactsMatchType,SearchContactsMatchType
-
matchType
Transcript.Builder matchType(SearchContactsMatchType matchType)
The match type combining search criteria using multiple transcript criteria.
- Parameters:
matchType- The match type combining search criteria using multiple transcript criteria.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchContactsMatchType,SearchContactsMatchType
-
-