Interface Transcript.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Transcript.Builder,Transcript>
,SdkBuilder<Transcript.Builder,Transcript>
,SdkPojo
- Enclosing class:
- Transcript
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.Builder
criteria(Collection<TranscriptCriteria> criteria)
The list of search criteria based on Contact Lens conversational analytics transcript.Transcript.Builder
criteria(Consumer<TranscriptCriteria.Builder>... criteria)
The list of search criteria based on Contact Lens conversational analytics transcript.Transcript.Builder
criteria(TranscriptCriteria... criteria)
The list of search criteria based on Contact Lens conversational analytics transcript.Transcript.Builder
matchType(String matchType)
The match type combining search criteria using multiple transcript criteria.Transcript.Builder
matchType(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.Builder
avoiding the need to create one manually viaTranscriptCriteria.builder()
.When the
Consumer
completes,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
-
-