Interface SearchAssociatedTranscriptsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchAssociatedTranscriptsResponse.Builder,SearchAssociatedTranscriptsResponse>,LexModelsV2Response.Builder,SdkBuilder<SearchAssociatedTranscriptsResponse.Builder,SearchAssociatedTranscriptsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchAssociatedTranscriptsResponse
public static interface SearchAssociatedTranscriptsResponse.Builder extends LexModelsV2Response.Builder, SdkPojo, CopyableBuilder<SearchAssociatedTranscriptsResponse.Builder,SearchAssociatedTranscriptsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchAssociatedTranscriptsResponse.BuilderassociatedTranscripts(Collection<AssociatedTranscript> associatedTranscripts)The object that contains the associated transcript that meet the criteria you specified.SearchAssociatedTranscriptsResponse.BuilderassociatedTranscripts(Consumer<AssociatedTranscript.Builder>... associatedTranscripts)The object that contains the associated transcript that meet the criteria you specified.SearchAssociatedTranscriptsResponse.BuilderassociatedTranscripts(AssociatedTranscript... associatedTranscripts)The object that contains the associated transcript that meet the criteria you specified.SearchAssociatedTranscriptsResponse.BuilderbotId(String botId)The unique identifier of the bot associated with the transcripts that you are searching.SearchAssociatedTranscriptsResponse.BuilderbotRecommendationId(String botRecommendationId)The unique identifier of the bot recommendation associated with the transcripts to search.SearchAssociatedTranscriptsResponse.BuilderbotVersion(String botVersion)The version of the bot containing the transcripts that you are searching.SearchAssociatedTranscriptsResponse.BuilderlocaleId(String localeId)The identifier of the language and locale of the transcripts to search.SearchAssociatedTranscriptsResponse.BuildernextIndex(Integer nextIndex)A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation.SearchAssociatedTranscriptsResponse.BuildertotalResults(Integer totalResults)The total number of transcripts returned by the search.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lexmodelsv2.model.LexModelsV2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
botId
SearchAssociatedTranscriptsResponse.Builder botId(String botId)
The unique identifier of the bot associated with the transcripts that you are searching.
- Parameters:
botId- The unique identifier of the bot associated with the transcripts that you are searching.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botVersion
SearchAssociatedTranscriptsResponse.Builder botVersion(String botVersion)
The version of the bot containing the transcripts that you are searching.
- Parameters:
botVersion- The version of the bot containing the transcripts that you are searching.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
localeId
SearchAssociatedTranscriptsResponse.Builder localeId(String localeId)
The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages
- Parameters:
localeId- The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botRecommendationId
SearchAssociatedTranscriptsResponse.Builder botRecommendationId(String botRecommendationId)
The unique identifier of the bot recommendation associated with the transcripts to search.
- Parameters:
botRecommendationId- The unique identifier of the bot recommendation associated with the transcripts to search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextIndex
SearchAssociatedTranscriptsResponse.Builder nextIndex(Integer nextIndex)
A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation. If the nextIndex field is present, you send the contents as the nextIndex parameter of a SearchAssociatedTranscriptsRequest operation to get the next page of results.
- Parameters:
nextIndex- A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation. If the nextIndex field is present, you send the contents as the nextIndex parameter of a SearchAssociatedTranscriptsRequest operation to get the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associatedTranscripts
SearchAssociatedTranscriptsResponse.Builder associatedTranscripts(Collection<AssociatedTranscript> associatedTranscripts)
The object that contains the associated transcript that meet the criteria you specified.
- Parameters:
associatedTranscripts- The object that contains the associated transcript that meet the criteria you specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associatedTranscripts
SearchAssociatedTranscriptsResponse.Builder associatedTranscripts(AssociatedTranscript... associatedTranscripts)
The object that contains the associated transcript that meet the criteria you specified.
- Parameters:
associatedTranscripts- The object that contains the associated transcript that meet the criteria you specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associatedTranscripts
SearchAssociatedTranscriptsResponse.Builder associatedTranscripts(Consumer<AssociatedTranscript.Builder>... associatedTranscripts)
The object that contains the associated transcript that meet the criteria you specified.
This is a convenience method that creates an instance of theAssociatedTranscript.Builderavoiding the need to create one manually viaAssociatedTranscript.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#associatedTranscripts(List.) - Parameters:
associatedTranscripts- a consumer that will call methods onAssociatedTranscript.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#associatedTranscripts(java.util.Collection)
-
totalResults
SearchAssociatedTranscriptsResponse.Builder totalResults(Integer totalResults)
The total number of transcripts returned by the search.
- Parameters:
totalResults- The total number of transcripts returned by the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-