@aws-sdk/client-alexa-for-business
AWS SDK for JavaScript AlexaForBusiness Client for Node.js, Browser and React Native.
Alexa for Business has been retired and is no longer supported.
To install the this package, simply type add or install @aws-sdk/client-alexa-for-business
using your favorite package manager:
npm install @aws-sdk/client-alexa-for-business
yarn add @aws-sdk/client-alexa-for-business
pnpm add @aws-sdk/client-alexa-for-business
The AWS SDK is modulized by clients and commands.
To send a request, you only need to import the AlexaForBusinessClient
and
the commands you need, for example ListSkillsCommand
:
// ES5 example
const { AlexaForBusinessClient, ListSkillsCommand } = require("@aws-sdk/client-alexa-for-business");
// ES6+ example
import { AlexaForBusinessClient, ListSkillsCommand } from "@aws-sdk/client-alexa-for-business";
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 AlexaForBusinessClient({ region: "REGION" });
const params = {
/** input parameters */
};
const command = new ListSkillsCommand(params);
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.
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.
});
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.
});
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-alexa-for-business";
const client = new AWS.AlexaForBusiness({ region: "REGION" });
// async/await.
try {
const data = await client.listSkills(params);
// process data.
} catch (error) {
// error handling.
}
// Promises.
client
.listSkills(params)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
});
// callbacks.
client.listSkills(params, (err, data) => {
// process err and data.
});
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;
* }
*/
}
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.
This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-alexa-for-business
package is updated.
To contribute to client you can check our generate clients scripts.
This SDK is distributed under the
Apache License, Version 2.0,
see LICENSE for more information.
Client Commands (Operations List)
ApproveSkill
Command API Reference / Input / Output
AssociateContactWithAddressBook
Command API Reference / Input / Output
AssociateDeviceWithNetworkProfile
Command API Reference / Input / Output
AssociateDeviceWithRoom
Command API Reference / Input / Output
AssociateSkillGroupWithRoom
Command API Reference / Input / Output
AssociateSkillWithSkillGroup
Command API Reference / Input / Output
AssociateSkillWithUsers
Command API Reference / Input / Output
CreateAddressBook
Command API Reference / Input / Output
CreateBusinessReportSchedule
Command API Reference / Input / Output
CreateConferenceProvider
Command API Reference / Input / Output
CreateContact
Command API Reference / Input / Output
CreateGatewayGroup
Command API Reference / Input / Output
CreateNetworkProfile
Command API Reference / Input / Output
CreateProfile
Command API Reference / Input / Output
CreateRoom
Command API Reference / Input / Output
CreateSkillGroup
Command API Reference / Input / Output
CreateUser
Command API Reference / Input / Output
DeleteAddressBook
Command API Reference / Input / Output
DeleteBusinessReportSchedule
Command API Reference / Input / Output
DeleteConferenceProvider
Command API Reference / Input / Output
DeleteContact
Command API Reference / Input / Output
DeleteDevice
Command API Reference / Input / Output
DeleteDeviceUsageData
Command API Reference / Input / Output
DeleteGatewayGroup
Command API Reference / Input / Output
DeleteNetworkProfile
Command API Reference / Input / Output
DeleteProfile
Command API Reference / Input / Output
DeleteRoom
Command API Reference / Input / Output
DeleteRoomSkillParameter
Command API Reference / Input / Output
DeleteSkillAuthorization
Command API Reference / Input / Output
DeleteSkillGroup
Command API Reference / Input / Output
DeleteUser
Command API Reference / Input / Output
DisassociateContactFromAddressBook
Command API Reference / Input / Output
DisassociateDeviceFromRoom
Command API Reference / Input / Output
DisassociateSkillFromSkillGroup
Command API Reference / Input / Output
DisassociateSkillFromUsers
Command API Reference / Input / Output
DisassociateSkillGroupFromRoom
Command API Reference / Input / Output
ForgetSmartHomeAppliances
Command API Reference / Input / Output
GetAddressBook
Command API Reference / Input / Output
GetConferencePreference
Command API Reference / Input / Output
GetConferenceProvider
Command API Reference / Input / Output
GetContact
Command API Reference / Input / Output
GetDevice
Command API Reference / Input / Output
GetGateway
Command API Reference / Input / Output
GetGatewayGroup
Command API Reference / Input / Output
GetInvitationConfiguration
Command API Reference / Input / Output
GetNetworkProfile
Command API Reference / Input / Output
GetProfile
Command API Reference / Input / Output
GetRoom
Command API Reference / Input / Output
GetRoomSkillParameter
Command API Reference / Input / Output
GetSkillGroup
Command API Reference / Input / Output
ListBusinessReportSchedules
Command API Reference / Input / Output
ListConferenceProviders
Command API Reference / Input / Output
ListDeviceEvents
Command API Reference / Input / Output
ListGatewayGroups
Command API Reference / Input / Output
ListGateways
Command API Reference / Input / Output
ListSkills
Command API Reference / Input / Output
ListSkillsStoreCategories
Command API Reference / Input / Output
ListSkillsStoreSkillsByCategory
Command API Reference / Input / Output
ListSmartHomeAppliances
Command API Reference / Input / Output
ListTags
Command API Reference / Input / Output
PutConferencePreference
Command API Reference / Input / Output
PutInvitationConfiguration
Command API Reference / Input / Output
PutRoomSkillParameter
Command API Reference / Input / Output
PutSkillAuthorization
Command API Reference / Input / Output
RegisterAVSDevice
Command API Reference / Input / Output
RejectSkill
Command API Reference / Input / Output
ResolveRoom
Command API Reference / Input / Output
RevokeInvitation
Command API Reference / Input / Output
SearchAddressBooks
Command API Reference / Input / Output
SearchContacts
Command API Reference / Input / Output
SearchDevices
Command API Reference / Input / Output
SearchNetworkProfiles
Command API Reference / Input / Output
SearchProfiles
Command API Reference / Input / Output
SearchRooms
Command API Reference / Input / Output
SearchSkillGroups
Command API Reference / Input / Output
SearchUsers
Command API Reference / Input / Output
SendAnnouncement
Command API Reference / Input / Output
SendInvitation
Command API Reference / Input / Output
StartDeviceSync
Command API Reference / Input / Output
StartSmartHomeApplianceDiscovery
Command API Reference / Input / Output
TagResource
Command API Reference / Input / Output
UntagResource
Command API Reference / Input / Output
UpdateAddressBook
Command API Reference / Input / Output
UpdateBusinessReportSchedule
Command API Reference / Input / Output
UpdateConferenceProvider
Command API Reference / Input / Output
UpdateContact
Command API Reference / Input / Output
UpdateDevice
Command API Reference / Input / Output
UpdateGateway
Command API Reference / Input / Output
UpdateGatewayGroup
Command API Reference / Input / Output
UpdateNetworkProfile
Command API Reference / Input / Output
UpdateProfile
Command API Reference / Input / Output
UpdateRoom
Command API Reference / Input / Output
UpdateSkillGroup
Command API Reference / Input / Output