Skip to main content

associated_transcripts

Creates, updates, deletes, gets or lists an associated_transcripts resource.

Overview

Nameassociated_transcripts
TypeResource
Idaws.lexv2_models.associated_transcripts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
associated_transcriptsarrayThe object that contains the associated transcript that meet the criteria you specified.
bot_idstringThe unique identifier of the bot associated with the transcripts that you are searching. (pattern: <code>^[0-9a-zA-Z]+$</code>)
bot_recommendation_idstringThe unique identifier of the bot recommendation associated with the transcripts to search. (pattern: <code>^[0-9a-zA-Z]+$</code>)
bot_versionstringThe version of the bot containing the transcripts that you are searching. (pattern: <code>^(DRAFT|[0-9]+)$</code>)
locale_idstringThe 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
next_indexintegerA 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.
total_resultsintegerThe total number of transcripts returned by the search.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_associated_transcriptsselectbot_id, bot_version, locale_id, bot_recommendation_id, regionSearch for associated transcripts that meet the specified criteria.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
bot_idstringThe unique identifier of the bot associated with the transcripts that you are searching.
bot_recommendation_idstringThe unique identifier of the bot recommendation associated with the transcripts to search.
bot_versionstringThe version of the bot containing the transcripts that you are searching.
locale_idstringThe 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
regionstringAWS region (default: us-east-1)

SELECT examples

Search for associated transcripts that meet the specified criteria.

SELECT
associated_transcripts,
bot_id,
bot_recommendation_id,
bot_version,
locale_id,
next_index,
total_results
FROM aws.lexv2_models.associated_transcripts
WHERE bot_id = '{{ bot_id }}' -- required
AND bot_version = '{{ bot_version }}' -- required
AND locale_id = '{{ locale_id }}' -- required
AND bot_recommendation_id = '{{ bot_recommendation_id }}' -- required
AND region = '{{ region }}' -- required
;