Socket
Socket
Sign inDemoInstall

@aws-sdk/client-iotsitewise

Package Overview
Dependencies
Maintainers
5
Versions
370
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-iotsitewise

AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native


Version published
Weekly downloads
4.5K
increased by9.29%
Maintainers
5
Weekly downloads
 
Created
Source

@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 ListAssetsCommand:

// ES5 example
const { IoTSiteWiseClient, ListAssetsCommand } = require("@aws-sdk/client-iotsitewise");
// ES6+ example
import { IoTSiteWiseClient, ListAssetsCommand } 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.
// a client can be shared by different commands.
const client = new IoTSiteWiseClient({ region: "REGION" });

const params = {
  /** input parameters */
};
const command = new ListAssetsCommand(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-iotsitewise";
const client = new AWS.IoTSiteWise({ region: "REGION" });

// async/await.
try {
  const data = await client.listAssets(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .listAssets(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks.
client.listAssets(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-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

CreateAssetModelCompositeModel

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

DeleteAssetModelCompositeModel

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

DescribeAction

Command API Reference / Input / Output

DescribeAsset

Command API Reference / Input / Output

DescribeAssetCompositeModel

Command API Reference / Input / Output

DescribeAssetModel

Command API Reference / Input / Output

DescribeAssetModelCompositeModel

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

ExecuteAction

Command API Reference / Input / Output

ExecuteQuery

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

ListActions

Command API Reference / Input / Output

ListAssetModelCompositeModels

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

ListCompositionRelationships

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

UpdateAssetModelCompositeModel

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

FAQs

Package last updated on 30 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc