@aws-sdk/client-iotsitewise
Description
AWS SDK for JavaScript IoTSiteWise Client for Node.js, Browser and React Native.
Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects Industrial Internet of Things (IIoT) devices to the power of the Amazon Web Services Cloud. For more information, see the
IoT SiteWise User Guide. For information about IoT SiteWise quotas, see Quotas in the IoT SiteWise User Guide.
Installing
To install the this package, simply type add or install @aws-sdk/client-iotsitewise
using your favorite package manager:
npm install @aws-sdk/client-iotsitewise
yarn add @aws-sdk/client-iotsitewise
pnpm add @aws-sdk/client-iotsitewise
Getting Started
Import
The AWS SDK is modulized by clients and commands.
To send a request, you only need to import the IoTSiteWiseClient
and
the commands you need, for example AssociateAssetsCommand
:
const { IoTSiteWiseClient, AssociateAssetsCommand } = require("@aws-sdk/client-iotsitewise");
import { IoTSiteWiseClient, AssociateAssetsCommand } from "@aws-sdk/client-iotsitewise";
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.
const client = new IoTSiteWiseClient({ region: "REGION" });
const params = {
};
const command = new AssociateAssetsCommand(params);
Async/await
We recommend using await
operator to wait for the promise returned by send operation as follows:
try {
const data = await client.send(command);
} catch (error) {
} 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) => {
},
(error) => {
}
);
Promises can also be called using .catch()
and .finally()
as follows:
client
.send(command)
.then((data) => {
})
.catch((error) => {
})
.finally(() => {
});
Callbacks
We do not recommend using callbacks because of callback hell,
but they are supported by the send operation.
client.send(command, (err, 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-iotsitewise";
const client = new AWS.IoTSiteWise({ region: "REGION" });
try {
const data = await client.associateAssets(params);
} catch (error) {
}
client
.associateAssets(params)
.then((data) => {
})
.catch((error) => {
});
client.associateAssets(params, (err, 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);
} catch (error) {
const { requestId, cfId, extendedRequestId } = error.$$metadata;
console.log({ requestId, cfId, extendedRequestId });
}
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-iotsitewise
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)
AssociateAssets
Command API Reference / Input / Output
AssociateTimeSeriesToAssetProperty
Command API Reference / Input / Output
BatchAssociateProjectAssets
Command API Reference / Input / Output
BatchDisassociateProjectAssets
Command API Reference / Input / Output
BatchGetAssetPropertyAggregates
Command API Reference / Input / Output
BatchGetAssetPropertyValue
Command API Reference / Input / Output
BatchGetAssetPropertyValueHistory
Command API Reference / Input / Output
BatchPutAssetPropertyValue
Command API Reference / Input / Output
CreateAccessPolicy
Command API Reference / Input / Output
CreateAsset
Command API Reference / Input / Output
CreateAssetModel
Command API Reference / Input / Output
CreateBulkImportJob
Command API Reference / Input / Output
CreateDashboard
Command API Reference / Input / Output
CreateGateway
Command API Reference / Input / Output
CreatePortal
Command API Reference / Input / Output
CreateProject
Command API Reference / Input / Output
DeleteAccessPolicy
Command API Reference / Input / Output
DeleteAsset
Command API Reference / Input / Output
DeleteAssetModel
Command API Reference / Input / Output
DeleteDashboard
Command API Reference / Input / Output
DeleteGateway
Command API Reference / Input / Output
DeletePortal
Command API Reference / Input / Output
DeleteProject
Command API Reference / Input / Output
DeleteTimeSeries
Command API Reference / Input / Output
DescribeAccessPolicy
Command API Reference / Input / Output
DescribeAsset
Command API Reference / Input / Output
DescribeAssetModel
Command API Reference / Input / Output
DescribeAssetProperty
Command API Reference / Input / Output
DescribeBulkImportJob
Command API Reference / Input / Output
DescribeDashboard
Command API Reference / Input / Output
DescribeDefaultEncryptionConfiguration
Command API Reference / Input / Output
DescribeGateway
Command API Reference / Input / Output
DescribeGatewayCapabilityConfiguration
Command API Reference / Input / Output
DescribeLoggingOptions
Command API Reference / Input / Output
DescribePortal
Command API Reference / Input / Output
DescribeProject
Command API Reference / Input / Output
DescribeStorageConfiguration
Command API Reference / Input / Output
DescribeTimeSeries
Command API Reference / Input / Output
DisassociateAssets
Command API Reference / Input / Output
DisassociateTimeSeriesFromAssetProperty
Command API Reference / Input / Output
GetAssetPropertyAggregates
Command API Reference / Input / Output
GetAssetPropertyValue
Command API Reference / Input / Output
GetAssetPropertyValueHistory
Command API Reference / Input / Output
GetInterpolatedAssetPropertyValues
Command API Reference / Input / Output
ListAccessPolicies
Command API Reference / Input / Output
ListAssetModelProperties
Command API Reference / Input / Output
ListAssetModels
Command API Reference / Input / Output
ListAssetProperties
Command API Reference / Input / Output
ListAssetRelationships
Command API Reference / Input / Output
ListAssets
Command API Reference / Input / Output
ListAssociatedAssets
Command API Reference / Input / Output
ListBulkImportJobs
Command API Reference / Input / Output
ListDashboards
Command API Reference / Input / Output
ListGateways
Command API Reference / Input / Output
ListPortals
Command API Reference / Input / Output
ListProjectAssets
Command API Reference / Input / Output
ListProjects
Command API Reference / Input / Output
ListTagsForResource
Command API Reference / Input / Output
ListTimeSeries
Command API Reference / Input / Output
PutDefaultEncryptionConfiguration
Command API Reference / Input / Output
PutLoggingOptions
Command API Reference / Input / Output
PutStorageConfiguration
Command API Reference / Input / Output
TagResource
Command API Reference / Input / Output
UntagResource
Command API Reference / Input / Output
UpdateAccessPolicy
Command API Reference / Input / Output
UpdateAsset
Command API Reference / Input / Output
UpdateAssetModel
Command API Reference / Input / Output
UpdateAssetProperty
Command API Reference / Input / Output
UpdateDashboard
Command API Reference / Input / Output
UpdateGateway
Command API Reference / Input / Output
UpdateGatewayCapabilityConfiguration
Command API Reference / Input / Output
UpdatePortal
Command API Reference / Input / Output
UpdateProject
Command API Reference / Input / Output