@aws-sdk/client-lex-models-v2
Description
AWS SDK for JavaScript LexModelsV2 Client for Node.js, Browser and React Native.
Installing
To install the this package, simply type add or install @aws-sdk/client-lex-models-v2
using your favorite package manager:
npm install @aws-sdk/client-lex-models-v2
yarn add @aws-sdk/client-lex-models-v2
pnpm add @aws-sdk/client-lex-models-v2
Getting Started
Import
The AWS SDK is modulized by clients and commands.
To send a request, you only need to import the LexModelsV2Client
and
the commands you need, for example ListBotsCommand
:
// ES5 example
const { LexModelsV2Client, ListBotsCommand } = require("@aws-sdk/client-lex-models-v2");
// ES6+ example
import { LexModelsV2Client, ListBotsCommand } from "@aws-sdk/client-lex-models-v2";
Usage
To send a request, you:
- Initiate client with configuration (e.g. credentials, region).
- Initiate command with input parameters.
- Call
send
operation on client with command object as input.
- If you are using a custom http handler, you may call
destroy()
to close open connections.
// a client can be shared by different commands.
const client = new LexModelsV2Client({ region: "REGION" });
const params = {
/** input parameters */
};
const command = new ListBotsCommand(params);
Async/await
We recommend using await
operator to wait for the promise returned by send operation as follows:
// async/await.
try {
const data = await client.send(command);
// process data.
} catch (error) {
// error handling.
} finally {
// finally.
}
Async-await is clean, concise, intuitive, easy to debug and has better error handling
as compared to using Promise chains or callbacks.
Promises
You can also use Promise chaining
to execute send operation.
client.send(command).then(
(data) => {
// process data.
},
(error) => {
// error handling.
}
);
Promises can also be called using .catch()
and .finally()
as follows:
client
.send(command)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
})
.finally(() => {
// finally.
});
Callbacks
We do not recommend using callbacks because of callback hell,
but they are supported by the send operation.
// callbacks.
client.send(command, (err, data) => {
// process err and data.
});
v2 compatible style
The client can also send requests using v2 compatible style.
However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
on modular packages in AWS SDK for JavaScript
import * as AWS from "@aws-sdk/client-lex-models-v2";
const client = new AWS.LexModelsV2({ region: "REGION" });
// async/await.
try {
const data = await client.listBots(params);
// process data.
} catch (error) {
// error handling.
}
// Promises.
client
.listBots(params)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
});
// callbacks.
client.listBots(params, (err, data) => {
// process err and data.
});
Troubleshooting
When the service returns an exception, the error will include the exception information,
as well as response metadata (e.g. request id).
try {
const data = await client.send(command);
// process data.
} catch (error) {
const { requestId, cfId, extendedRequestId } = error.$$metadata;
console.log({ requestId, cfId, extendedRequestId });
/**
* The keys within exceptions are also parsed.
* You can access them by specifying exception names:
* if (error.name === 'SomeServiceException') {
* const value = error.specialKeyInException;
* }
*/
}
Getting Help
Please use these community resources for getting help.
We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
To test your universal JavaScript code in Node.js, browser and react-native environments,
visit our code samples repo.
Contributing
This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-lex-models-v2
package is updated.
To contribute to client you can check our generate clients scripts.
License
This SDK is distributed under the
Apache License, Version 2.0,
see LICENSE for more information.
Client Commands (Operations List)
BatchCreateCustomVocabularyItem
Command API Reference / Input / Output
BatchDeleteCustomVocabularyItem
Command API Reference / Input / Output
BatchUpdateCustomVocabularyItem
Command API Reference / Input / Output
BuildBotLocale
Command API Reference / Input / Output
CreateBot
Command API Reference / Input / Output
CreateBotAlias
Command API Reference / Input / Output
CreateBotLocale
Command API Reference / Input / Output
CreateBotVersion
Command API Reference / Input / Output
CreateExport
Command API Reference / Input / Output
CreateIntent
Command API Reference / Input / Output
CreateResourcePolicy
Command API Reference / Input / Output
CreateResourcePolicyStatement
Command API Reference / Input / Output
CreateSlot
Command API Reference / Input / Output
CreateSlotType
Command API Reference / Input / Output
CreateTestSetDiscrepancyReport
Command API Reference / Input / Output
CreateUploadUrl
Command API Reference / Input / Output
DeleteBot
Command API Reference / Input / Output
DeleteBotAlias
Command API Reference / Input / Output
DeleteBotLocale
Command API Reference / Input / Output
DeleteBotVersion
Command API Reference / Input / Output
DeleteCustomVocabulary
Command API Reference / Input / Output
DeleteExport
Command API Reference / Input / Output
DeleteImport
Command API Reference / Input / Output
DeleteIntent
Command API Reference / Input / Output
DeleteResourcePolicy
Command API Reference / Input / Output
DeleteResourcePolicyStatement
Command API Reference / Input / Output
DeleteSlot
Command API Reference / Input / Output
DeleteSlotType
Command API Reference / Input / Output
DeleteTestSet
Command API Reference / Input / Output
DeleteUtterances
Command API Reference / Input / Output
DescribeBot
Command API Reference / Input / Output
DescribeBotAlias
Command API Reference / Input / Output
DescribeBotLocale
Command API Reference / Input / Output
DescribeBotRecommendation
Command API Reference / Input / Output
DescribeBotVersion
Command API Reference / Input / Output
DescribeCustomVocabularyMetadata
Command API Reference / Input / Output
DescribeExport
Command API Reference / Input / Output
DescribeImport
Command API Reference / Input / Output
DescribeIntent
Command API Reference / Input / Output
DescribeResourcePolicy
Command API Reference / Input / Output
DescribeSlot
Command API Reference / Input / Output
DescribeSlotType
Command API Reference / Input / Output
DescribeTestExecution
Command API Reference / Input / Output
DescribeTestSet
Command API Reference / Input / Output
DescribeTestSetDiscrepancyReport
Command API Reference / Input / Output
DescribeTestSetGeneration
Command API Reference / Input / Output
GetTestExecutionArtifactsUrl
Command API Reference / Input / Output
ListAggregatedUtterances
Command API Reference / Input / Output
ListBotAliases
Command API Reference / Input / Output
ListBotLocales
Command API Reference / Input / Output
ListBotRecommendations
Command API Reference / Input / Output
ListBots
Command API Reference / Input / Output
ListBotVersions
Command API Reference / Input / Output
ListBuiltInIntents
Command API Reference / Input / Output
ListBuiltInSlotTypes
Command API Reference / Input / Output
ListCustomVocabularyItems
Command API Reference / Input / Output
ListExports
Command API Reference / Input / Output
ListImports
Command API Reference / Input / Output
ListIntentMetrics
Command API Reference / Input / Output
ListIntentPaths
Command API Reference / Input / Output
ListIntents
Command API Reference / Input / Output
ListIntentStageMetrics
Command API Reference / Input / Output
ListRecommendedIntents
Command API Reference / Input / Output
ListSessionAnalyticsData
Command API Reference / Input / Output
ListSessionMetrics
Command API Reference / Input / Output
ListSlots
Command API Reference / Input / Output
ListSlotTypes
Command API Reference / Input / Output
ListTagsForResource
Command API Reference / Input / Output
ListTestExecutionResultItems
Command API Reference / Input / Output
ListTestExecutions
Command API Reference / Input / Output
ListTestSetRecords
Command API Reference / Input / Output
ListTestSets
Command API Reference / Input / Output
ListUtteranceAnalyticsData
Command API Reference / Input / Output
ListUtteranceMetrics
Command API Reference / Input / Output
SearchAssociatedTranscripts
Command API Reference / Input / Output
StartBotRecommendation
Command API Reference / Input / Output
StartImport
Command API Reference / Input / Output
StartTestExecution
Command API Reference / Input / Output
StartTestSetGeneration
Command API Reference / Input / Output
StopBotRecommendation
Command API Reference / Input / Output
TagResource
Command API Reference / Input / Output
UntagResource
Command API Reference / Input / Output
UpdateBot
Command API Reference / Input / Output
UpdateBotAlias
Command API Reference / Input / Output
UpdateBotLocale
Command API Reference / Input / Output
UpdateBotRecommendation
Command API Reference / Input / Output
UpdateExport
Command API Reference / Input / Output
UpdateIntent
Command API Reference / Input / Output
UpdateResourcePolicy
Command API Reference / Input / Output
UpdateSlot
Command API Reference / Input / Output
UpdateSlotType
Command API Reference / Input / Output
UpdateTestSet
Command API Reference / Input / Output