associated_transcripts
Creates, updates, deletes, gets or lists an associated_transcripts resource.
Overview
| Name | associated_transcripts |
| Type | Resource |
| Id | aws.lexv2_models.associated_transcripts |
Fields
The following fields are returned by SELECT queries:
- search_associated_transcripts
| Name | Datatype | Description |
|---|---|---|
associated_transcripts | array | The object that contains the associated transcript that meet the criteria you specified. |
bot_id | string | The unique identifier of the bot associated with the transcripts that you are searching. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
bot_recommendation_id | string | The unique identifier of the bot recommendation associated with the transcripts to search. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
bot_version | string | The version of the bot containing the transcripts that you are searching. (pattern: <code>^(DRAFT|[0-9]+)$</code>) |
locale_id | string | 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 |
next_index | integer | 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. |
total_results | integer | The total number of transcripts returned by the search. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
search_associated_transcripts | select | bot_id, bot_version, locale_id, bot_recommendation_id, region | Search 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.
| Name | Datatype | Description |
|---|---|---|
bot_id | string | The unique identifier of the bot associated with the transcripts that you are searching. |
bot_recommendation_id | string | The unique identifier of the bot recommendation associated with the transcripts to search. |
bot_version | string | The version of the bot containing the transcripts that you are searching. |
locale_id | string | 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 |
region | string | AWS region (default: us-east-1) |
SELECT examples
- search_associated_transcripts
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
;