clients/client-iot/README.md
AWS SDK for JavaScript IoT Client for Node.js, Browser and React Native.
<fullname>IoT</fullname>
<p>IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.</p> <p>The service endpoints that expose this API are listed in <a href="https://docs.aws.amazon.com/general/latest/gr/iot-core.html">Amazon Web Services IoT Core Endpoints and Quotas</a>. You must use the endpoint for the region that has the resources you want to access.</p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web Services Signature Version 4</a> to sign the request is: <i>execute-api</i>.</p> <p>For more information about how IoT works, see the <a href="https://docs.aws.amazon.com/iot/latest/developerguide/aws-iot-how-it-works.html">Developer Guide</a>.</p> <p>For information about how to use the credentials provider for IoT, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/authorizing-direct-aws.html">Authorizing Direct Calls to Amazon Web Services Services</a>.</p>To install this package, use the CLI of your favorite package manager:
npm install @aws-sdk/client-iotyarn add @aws-sdk/client-iotpnpm add @aws-sdk/client-iotThe AWS SDK is modulized by clients and commands.
To send a request, you only need to import the IoTClient and
the commands you need, for example ListIndicesCommand:
// ES5 example
const { IoTClient, ListIndicesCommand } = require("@aws-sdk/client-iot");
// ES6+ example
import { IoTClient, ListIndicesCommand } from "@aws-sdk/client-iot";
To send a request:
send operation on the client, providing the command object as input.const client = new IoTClient({ region: "REGION" });
const params = { /** input parameters */ };
const command = new ListIndicesCommand(params);
We recommend using the 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.
}
You can also use Promise chaining.
client
.send(command)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
})
.finally(() => {
// finally.
});
The aggregated client class is exported from the same package, but without the "Client" suffix.
IoT extends IoTClient and additionally supports all operations, waiters, and paginators as methods.
This style may be familiar to you from the AWS SDK for JavaScript v2.
If you are bundling the AWS SDK, we recommend using only the bare-bones client (IoTClient).
More details are in the blog post on
modular packages in AWS SDK for JavaScript.
import { IoT } from "@aws-sdk/client-iot";
const client = new IoT({ region: "REGION" });
// async/await.
try {
const data = await client.listIndices(params);
// process data.
} catch (error) {
// error handling.
}
// Promises.
client
.listIndices(params)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
});
// callbacks (not recommended).
client.listIndices(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;
* }
*/
}
See also docs/ERROR_HANDLING.
Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
aws-sdk-js
on AWS Developer Blog.aws-sdk-js.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-iot 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.
Command API Reference / Input / Output
</details> <details> <summary> AddThingToBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> AddThingToThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> AssociateSbomWithPackageVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> AssociateTargetsWithJob </summary>Command API Reference / Input / Output
</details> <details> <summary> AttachPolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> AttachPrincipalPolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> AttachSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> AttachThingPrincipal </summary>Command API Reference / Input / Output
</details> <details> <summary> CancelAuditMitigationActionsTask </summary>Command API Reference / Input / Output
</details> <details> <summary> CancelAuditTask </summary>Command API Reference / Input / Output
</details> <details> <summary> CancelCertificateTransfer </summary>Command API Reference / Input / Output
</details> <details> <summary> CancelDetectMitigationActionsTask </summary>Command API Reference / Input / Output
</details> <details> <summary> CancelJob </summary>Command API Reference / Input / Output
</details> <details> <summary> CancelJobExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> ClearDefaultAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> ConfirmTopicRuleDestination </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateAuditSuppression </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateCertificateFromCsr </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateCertificateProvider </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateCommand </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateCustomMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateDimension </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateDomainConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateDynamicThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateFleetMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateJob </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateJobTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateKeysAndCertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateMitigationAction </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateOTAUpdate </summary>Command API Reference / Input / Output
</details> <details> <summary> CreatePackage </summary>Command API Reference / Input / Output
</details> <details> <summary> CreatePackageVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> CreatePolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> CreatePolicyVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateProvisioningClaim </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateProvisioningTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateProvisioningTemplateVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateRoleAlias </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateScheduledAudit </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateStream </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateThing </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateThingType </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateTopicRule </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateTopicRuleDestination </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteAccountAuditConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteAuditSuppression </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCACertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCertificateProvider </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCommand </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCommandExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCustomMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteDimension </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteDomainConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteDynamicThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteFleetMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteJob </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteJobExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteJobTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteMitigationAction </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteOTAUpdate </summary>Command API Reference / Input / Output
</details> <details> <summary> DeletePackage </summary>Command API Reference / Input / Output
</details> <details> <summary> DeletePackageVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> DeletePolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> DeletePolicyVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteProvisioningTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteProvisioningTemplateVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteRegistrationCode </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteRoleAlias </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteScheduledAudit </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteStream </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteThing </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteThingType </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteTopicRule </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteTopicRuleDestination </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteV2LoggingLevel </summary>Command API Reference / Input / Output
</details> <details> <summary> DeprecateThingType </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeAccountAuditConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeAuditFinding </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeAuditMitigationActionsTask </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeAuditSuppression </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeAuditTask </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeCACertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeCertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeCertificateProvider </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeCustomMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeDefaultAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeDetectMitigationActionsTask </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeDimension </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeDomainConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeEncryptionConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeEndpoint </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeEventConfigurations </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeFleetMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeIndex </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeJob </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeJobExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeJobTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeManagedJobTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeMitigationAction </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeProvisioningTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeProvisioningTemplateVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeRoleAlias </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeScheduledAudit </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeStream </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeThing </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeThingRegistrationTask </summary>Command API Reference / Input / Output
</details> <details> <summary> DescribeThingType </summary>Command API Reference / Input / Output
</details> <details> <summary> DetachPolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> DetachPrincipalPolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> DetachSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> DetachThingPrincipal </summary>Command API Reference / Input / Output
</details> <details> <summary> DisableTopicRule </summary>Command API Reference / Input / Output
</details> <details> <summary> DisassociateSbomFromPackageVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> EnableTopicRule </summary>Command API Reference / Input / Output
</details> <details> <summary> GetBehaviorModelTrainingSummaries </summary>Command API Reference / Input / Output
</details> <details> <summary> GetBucketsAggregation </summary>Command API Reference / Input / Output
</details> <details> <summary> GetCardinality </summary>Command API Reference / Input / Output
</details> <details> <summary> GetCommand </summary>Command API Reference / Input / Output
</details> <details> <summary> GetCommandExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> GetEffectivePolicies </summary>Command API Reference / Input / Output
</details> <details> <summary> GetIndexingConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> GetJobDocument </summary>Command API Reference / Input / Output
</details> <details> <summary> GetLoggingOptions </summary>Command API Reference / Input / Output
</details> <details> <summary> GetOTAUpdate </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPackage </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPackageConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPackageVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPercentiles </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPolicyVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> GetRegistrationCode </summary>Command API Reference / Input / Output
</details> <details> <summary> GetStatistics </summary>Command API Reference / Input / Output
</details> <details> <summary> GetThingConnectivityData </summary>Command API Reference / Input / Output
</details> <details> <summary> GetTopicRule </summary>Command API Reference / Input / Output
</details> <details> <summary> GetTopicRuleDestination </summary>Command API Reference / Input / Output
</details> <details> <summary> GetV2LoggingOptions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListActiveViolations </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAttachedPolicies </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAuditFindings </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAuditMitigationActionsExecutions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAuditMitigationActionsTasks </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAuditSuppressions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAuditTasks </summary>Command API Reference / Input / Output
</details> <details> <summary> ListAuthorizers </summary>Command API Reference / Input / Output
</details> <details> <summary> ListBillingGroups </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCACertificates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCertificateProviders </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCertificates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCertificatesByCA </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCommandExecutions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCommands </summary>Command API Reference / Input / Output
</details> <details> <summary> ListCustomMetrics </summary>Command API Reference / Input / Output
</details> <details> <summary> ListDetectMitigationActionsExecutions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListDetectMitigationActionsTasks </summary>Command API Reference / Input / Output
</details> <details> <summary> ListDimensions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListDomainConfigurations </summary>Command API Reference / Input / Output
</details> <details> <summary> ListFleetMetrics </summary>Command API Reference / Input / Output
</details> <details> <summary> ListIndices </summary>Command API Reference / Input / Output
</details> <details> <summary> ListJobExecutionsForJob </summary>Command API Reference / Input / Output
</details> <details> <summary> ListJobExecutionsForThing </summary>Command API Reference / Input / Output
</details> <details> <summary> ListJobs </summary>Command API Reference / Input / Output
</details> <details> <summary> ListJobTemplates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListManagedJobTemplates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListMetricValues </summary>Command API Reference / Input / Output
</details> <details> <summary> ListMitigationActions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListOTAUpdates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListOutgoingCertificates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPackages </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPackageVersions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPolicies </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPolicyPrincipals </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPolicyVersions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPrincipalPolicies </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPrincipalThings </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPrincipalThingsV2 </summary>Command API Reference / Input / Output
</details> <details> <summary> ListProvisioningTemplates </summary>Command API Reference / Input / Output
</details> <details> <summary> ListProvisioningTemplateVersions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListRelatedResourcesForAuditFinding </summary>Command API Reference / Input / Output
</details> <details> <summary> ListRoleAliases </summary>Command API Reference / Input / Output
</details> <details> <summary> ListSbomValidationResults </summary>Command API Reference / Input / Output
</details> <details> <summary> ListScheduledAudits </summary>Command API Reference / Input / Output
</details> <details> <summary> ListSecurityProfiles </summary>Command API Reference / Input / Output
</details> <details> <summary> ListSecurityProfilesForTarget </summary>Command API Reference / Input / Output
</details> <details> <summary> ListStreams </summary>Command API Reference / Input / Output
</details> <details> <summary> ListTagsForResource </summary>Command API Reference / Input / Output
</details> <details> <summary> ListTargetsForPolicy </summary>Command API Reference / Input / Output
</details> <details> <summary> ListTargetsForSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingGroups </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingGroupsForThing </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingPrincipals </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingPrincipalsV2 </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingRegistrationTaskReports </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingRegistrationTasks </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThings </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingsInBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingsInThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> ListThingTypes </summary>Command API Reference / Input / Output
</details> <details> <summary> ListTopicRuleDestinations </summary>Command API Reference / Input / Output
</details> <details> <summary> ListTopicRules </summary>Command API Reference / Input / Output
</details> <details> <summary> ListV2LoggingLevels </summary>Command API Reference / Input / Output
</details> <details> <summary> ListViolationEvents </summary>Command API Reference / Input / Output
</details> <details> <summary> PutVerificationStateOnViolation </summary>Command API Reference / Input / Output
</details> <details> <summary> RegisterCACertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> RegisterCertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> RegisterCertificateWithoutCA </summary>Command API Reference / Input / Output
</details> <details> <summary> RegisterThing </summary>Command API Reference / Input / Output
</details> <details> <summary> RejectCertificateTransfer </summary>Command API Reference / Input / Output
</details> <details> <summary> RemoveThingFromBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> RemoveThingFromThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> ReplaceTopicRule </summary>Command API Reference / Input / Output
</details> <details> <summary> SearchIndex </summary>Command API Reference / Input / Output
</details> <details> <summary> SetDefaultAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> SetDefaultPolicyVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> SetLoggingOptions </summary>Command API Reference / Input / Output
</details> <details> <summary> SetV2LoggingLevel </summary>Command API Reference / Input / Output
</details> <details> <summary> SetV2LoggingOptions </summary>Command API Reference / Input / Output
</details> <details> <summary> StartAuditMitigationActionsTask </summary>Command API Reference / Input / Output
</details> <details> <summary> StartDetectMitigationActionsTask </summary>Command API Reference / Input / Output
</details> <details> <summary> StartOnDemandAuditTask </summary>Command API Reference / Input / Output
</details> <details> <summary> StartThingRegistrationTask </summary>Command API Reference / Input / Output
</details> <details> <summary> StopThingRegistrationTask </summary>Command API Reference / Input / Output
</details> <details> <summary> TagResource </summary>Command API Reference / Input / Output
</details> <details> <summary> TestAuthorization </summary>Command API Reference / Input / Output
</details> <details> <summary> TestInvokeAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> TransferCertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> UntagResource </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateAccountAuditConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateAuditSuppression </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateAuthorizer </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateBillingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateCACertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateCertificate </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateCertificateProvider </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateCommand </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateCustomMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateDimension </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateDomainConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateDynamicThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateEncryptionConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateEventConfigurations </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateFleetMetric </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateIndexingConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateJob </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateMitigationAction </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdatePackage </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdatePackageConfiguration </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdatePackageVersion </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateProvisioningTemplate </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateRoleAlias </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateScheduledAudit </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateSecurityProfile </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateStream </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateThing </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateThingGroup </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateThingGroupsForThing </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateThingType </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateTopicRuleDestination </summary> </details> <details> <summary> ValidateSecurityProfileBehaviors </summary> </details>