@aws-sdk/client-lookoutequipment 3.300.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateDatasetCommand.d.ts +4 -4
- package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +8 -8
- package/dist-types/commands/CreateLabelCommand.d.ts +1 -1
- package/dist-types/commands/CreateLabelGroupCommand.d.ts +4 -4
- package/dist-types/commands/CreateModelCommand.d.ts +7 -7
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLabelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLabelGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLabelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLabelGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/commands/ListInferenceEventsCommand.d.ts +1 -1
- package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +1 -1
- package/dist-types/commands/ListLabelGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListLabelsCommand.d.ts +1 -1
- package/dist-types/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListSensorStatisticsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartDataIngestionJobCommand.d.ts +3 -3
- package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +1 -1
- package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +6 -6
- package/dist-types/commands/UpdateLabelGroupCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -29,15 +29,15 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
|
|
|
29
29
|
* import { LookoutEquipmentClient, CreateDatasetCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
30
30
|
* // const { LookoutEquipmentClient, CreateDatasetCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
31
31
|
* const client = new LookoutEquipmentClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateDatasetRequest
|
|
33
33
|
* DatasetName: "STRING_VALUE", // required
|
|
34
|
-
* DatasetSchema: {
|
|
34
|
+
* DatasetSchema: { // DatasetSchema
|
|
35
35
|
* InlineDataSchema: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* ServerSideKmsKeyId: "STRING_VALUE",
|
|
38
38
|
* ClientToken: "STRING_VALUE", // required
|
|
39
|
-
* Tags: [
|
|
40
|
-
* {
|
|
39
|
+
* Tags: [ // TagList
|
|
40
|
+
* { // Tag
|
|
41
41
|
* Key: "STRING_VALUE", // required
|
|
42
42
|
* Value: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
@@ -30,24 +30,24 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc
|
|
|
30
30
|
* import { LookoutEquipmentClient, CreateInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
31
31
|
* // const { LookoutEquipmentClient, CreateInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
32
32
|
* const client = new LookoutEquipmentClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // CreateInferenceSchedulerRequest
|
|
34
34
|
* ModelName: "STRING_VALUE", // required
|
|
35
35
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
36
36
|
* DataDelayOffsetInMinutes: Number("long"),
|
|
37
37
|
* DataUploadFrequency: "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H", // required
|
|
38
|
-
* DataInputConfiguration: {
|
|
39
|
-
* S3InputConfiguration: {
|
|
38
|
+
* DataInputConfiguration: { // InferenceInputConfiguration
|
|
39
|
+
* S3InputConfiguration: { // InferenceS3InputConfiguration
|
|
40
40
|
* Bucket: "STRING_VALUE", // required
|
|
41
41
|
* Prefix: "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* InputTimeZoneOffset: "STRING_VALUE",
|
|
44
|
-
* InferenceInputNameConfiguration: {
|
|
44
|
+
* InferenceInputNameConfiguration: { // InferenceInputNameConfiguration
|
|
45
45
|
* TimestampFormat: "STRING_VALUE",
|
|
46
46
|
* ComponentTimestampDelimiter: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
|
-
* DataOutputConfiguration: {
|
|
50
|
-
* S3OutputConfiguration: {
|
|
49
|
+
* DataOutputConfiguration: { // InferenceOutputConfiguration
|
|
50
|
+
* S3OutputConfiguration: { // InferenceS3OutputConfiguration
|
|
51
51
|
* Bucket: "STRING_VALUE", // required
|
|
52
52
|
* Prefix: "STRING_VALUE",
|
|
53
53
|
* },
|
|
@@ -56,8 +56,8 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc
|
|
|
56
56
|
* RoleArn: "STRING_VALUE", // required
|
|
57
57
|
* ServerSideKmsKeyId: "STRING_VALUE",
|
|
58
58
|
* ClientToken: "STRING_VALUE", // required
|
|
59
|
-
* Tags: [
|
|
60
|
-
* {
|
|
59
|
+
* Tags: [ // TagList
|
|
60
|
+
* { // Tag
|
|
61
61
|
* Key: "STRING_VALUE", // required
|
|
62
62
|
* Value: "STRING_VALUE", // required
|
|
63
63
|
* },
|
|
@@ -28,7 +28,7 @@ export interface CreateLabelCommandOutput extends CreateLabelResponse, __Metadat
|
|
|
28
28
|
* import { LookoutEquipmentClient, CreateLabelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, CreateLabelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateLabelRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
33
|
* StartTime: new Date("TIMESTAMP"), // required
|
|
34
34
|
* EndTime: new Date("TIMESTAMP"), // required
|
|
@@ -28,14 +28,14 @@ export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse,
|
|
|
28
28
|
* import { LookoutEquipmentClient, CreateLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, CreateLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateLabelGroupRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
|
-
* FaultCodes: [
|
|
33
|
+
* FaultCodes: [ // FaultCodes
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* ClientToken: "STRING_VALUE", // required
|
|
37
|
-
* Tags: [
|
|
38
|
-
* {
|
|
37
|
+
* Tags: [ // TagList
|
|
38
|
+
* { // Tag
|
|
39
39
|
* Key: "STRING_VALUE", // required
|
|
40
40
|
* Value: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
@@ -34,14 +34,14 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
|
|
|
34
34
|
* import { LookoutEquipmentClient, CreateModelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
35
35
|
* // const { LookoutEquipmentClient, CreateModelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
36
36
|
* const client = new LookoutEquipmentClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // CreateModelRequest
|
|
38
38
|
* ModelName: "STRING_VALUE", // required
|
|
39
39
|
* DatasetName: "STRING_VALUE", // required
|
|
40
|
-
* DatasetSchema: {
|
|
40
|
+
* DatasetSchema: { // DatasetSchema
|
|
41
41
|
* InlineDataSchema: "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
|
-
* LabelsInputConfiguration: {
|
|
44
|
-
* S3InputConfiguration: {
|
|
43
|
+
* LabelsInputConfiguration: { // LabelsInputConfiguration
|
|
44
|
+
* S3InputConfiguration: { // LabelsS3InputConfiguration
|
|
45
45
|
* Bucket: "STRING_VALUE", // required
|
|
46
46
|
* Prefix: "STRING_VALUE",
|
|
47
47
|
* },
|
|
@@ -53,12 +53,12 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
|
|
|
53
53
|
* EvaluationDataStartTime: new Date("TIMESTAMP"),
|
|
54
54
|
* EvaluationDataEndTime: new Date("TIMESTAMP"),
|
|
55
55
|
* RoleArn: "STRING_VALUE",
|
|
56
|
-
* DataPreProcessingConfiguration: {
|
|
56
|
+
* DataPreProcessingConfiguration: { // DataPreProcessingConfiguration
|
|
57
57
|
* TargetSamplingRate: "PT1S" || "PT5S" || "PT10S" || "PT15S" || "PT30S" || "PT1M" || "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
|
|
58
58
|
* },
|
|
59
59
|
* ServerSideKmsKeyId: "STRING_VALUE",
|
|
60
|
-
* Tags: [
|
|
61
|
-
* {
|
|
60
|
+
* Tags: [ // TagList
|
|
61
|
+
* { // Tag
|
|
62
62
|
* Key: "STRING_VALUE", // required
|
|
63
63
|
* Value: "STRING_VALUE", // required
|
|
64
64
|
* },
|
|
@@ -30,7 +30,7 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* import { LookoutEquipmentClient, DeleteDatasetCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
31
31
|
* // const { LookoutEquipmentClient, DeleteDatasetCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
32
32
|
* const client = new LookoutEquipmentClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteDatasetRequest
|
|
34
34
|
* DatasetName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteDatasetCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
|
|
|
27
27
|
* import { LookoutEquipmentClient, DeleteInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, DeleteInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteInferenceSchedulerRequest
|
|
31
31
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteInferenceSchedulerCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { LookoutEquipmentClient, DeleteLabelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, DeleteLabelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteLabelRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
33
|
* LabelId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { LookoutEquipmentClient, DeleteLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, DeleteLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteLabelGroupRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteLabelGroupCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { LookoutEquipmentClient, DeleteModelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, DeleteModelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteModelRequest
|
|
32
32
|
* ModelName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteModelCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
|
|
|
27
27
|
* import { LookoutEquipmentClient, DescribeDataIngestionJobCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, DescribeDataIngestionJobCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeDataIngestionJobRequest
|
|
31
31
|
* JobId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeDataIngestionJobCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
27
27
|
* import { LookoutEquipmentClient, DescribeDatasetCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, DescribeDatasetCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeDatasetRequest
|
|
31
31
|
* DatasetName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeDatasetCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
|
|
|
27
27
|
* import { LookoutEquipmentClient, DescribeInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, DescribeInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeInferenceSchedulerRequest
|
|
31
31
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeInferenceSchedulerCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
|
|
|
28
28
|
* import { LookoutEquipmentClient, DescribeLabelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, DescribeLabelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeLabelRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
33
|
* LabelId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
|
|
|
28
28
|
* import { LookoutEquipmentClient, DescribeLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, DescribeLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeLabelGroupRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeLabelGroupCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
|
|
|
28
28
|
* import { LookoutEquipmentClient, DescribeModelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, DescribeModelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeModelRequest
|
|
32
32
|
* ModelName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeModelCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
|
|
|
27
27
|
* import { LookoutEquipmentClient, ListDataIngestionJobsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, ListDataIngestionJobsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListDataIngestionJobsRequest
|
|
31
31
|
* DatasetName: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
27
27
|
* import { LookoutEquipmentClient, ListDatasetsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, ListDatasetsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListDatasetsRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* DatasetNameBeginsWith: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
|
|
|
27
27
|
* import { LookoutEquipmentClient, ListInferenceEventsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, ListInferenceEventsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListInferenceEventsRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
|
|
|
27
27
|
* import { LookoutEquipmentClient, ListInferenceExecutionsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, ListInferenceExecutionsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListInferenceExecutionsRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
|
|
|
27
27
|
* import { LookoutEquipmentClient, ListInferenceSchedulersCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, ListInferenceSchedulersCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListInferenceSchedulersRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* InferenceSchedulerNameBeginsWith: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
|
|
|
28
28
|
* import { LookoutEquipmentClient, ListLabelGroupsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, ListLabelGroupsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListLabelGroupsRequest
|
|
32
32
|
* LabelGroupNameBeginsWith: "STRING_VALUE",
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -28,7 +28,7 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
|
|
|
28
28
|
* import { LookoutEquipmentClient, ListLabelsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, ListLabelsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListLabelsRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
33
|
* IntervalStartTime: new Date("TIMESTAMP"),
|
|
34
34
|
* IntervalEndTime: new Date("TIMESTAMP"),
|
|
@@ -27,7 +27,7 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
|
|
|
27
27
|
* import { LookoutEquipmentClient, ListModelsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, ListModelsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListModelsRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
|
|
@@ -28,7 +28,7 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
|
|
|
28
28
|
* import { LookoutEquipmentClient, ListSensorStatisticsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, ListSensorStatisticsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListSensorStatisticsRequest
|
|
32
32
|
* DatasetName: "STRING_VALUE", // required
|
|
33
33
|
* IngestionJobId: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { LookoutEquipmentClient, ListTagsForResourceCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
27
27
|
* // const { LookoutEquipmentClient, ListTagsForResourceCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
28
28
|
* const client = new LookoutEquipmentClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,10 +27,10 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
|
|
|
27
27
|
* import { LookoutEquipmentClient, StartDataIngestionJobCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
28
28
|
* // const { LookoutEquipmentClient, StartDataIngestionJobCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
29
29
|
* const client = new LookoutEquipmentClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // StartDataIngestionJobRequest
|
|
31
31
|
* DatasetName: "STRING_VALUE", // required
|
|
32
|
-
* IngestionInputConfiguration: {
|
|
33
|
-
* S3InputConfiguration: {
|
|
32
|
+
* IngestionInputConfiguration: { // IngestionInputConfiguration
|
|
33
|
+
* S3InputConfiguration: { // IngestionS3InputConfiguration
|
|
34
34
|
* Bucket: "STRING_VALUE", // required
|
|
35
35
|
* Prefix: "STRING_VALUE",
|
|
36
36
|
* KeyPattern: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
|
|
|
26
26
|
* import { LookoutEquipmentClient, StartInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
27
27
|
* // const { LookoutEquipmentClient, StartInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
28
28
|
* const client = new LookoutEquipmentClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartInferenceSchedulerRequest
|
|
30
30
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartInferenceSchedulerCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
|
|
|
26
26
|
* import { LookoutEquipmentClient, StopInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
27
27
|
* // const { LookoutEquipmentClient, StopInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
28
28
|
* const client = new LookoutEquipmentClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StopInferenceSchedulerRequest
|
|
30
30
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopInferenceSchedulerCommand(input);
|
|
@@ -30,10 +30,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
30
30
|
* import { LookoutEquipmentClient, TagResourceCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
31
31
|
* // const { LookoutEquipmentClient, TagResourceCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
32
32
|
* const client = new LookoutEquipmentClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // TagResourceRequest
|
|
34
34
|
* ResourceArn: "STRING_VALUE", // required
|
|
35
|
-
* Tags: [ // required
|
|
36
|
-
* {
|
|
35
|
+
* Tags: [ // TagList // required
|
|
36
|
+
* { // Tag
|
|
37
37
|
* Key: "STRING_VALUE", // required
|
|
38
38
|
* Value: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { LookoutEquipmentClient, UntagResourceCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
27
27
|
* // const { LookoutEquipmentClient, UntagResourceCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
28
28
|
* const client = new LookoutEquipmentClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,23 +26,23 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
|
|
|
26
26
|
* import { LookoutEquipmentClient, UpdateInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
27
27
|
* // const { LookoutEquipmentClient, UpdateInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
28
28
|
* const client = new LookoutEquipmentClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateInferenceSchedulerRequest
|
|
30
30
|
* InferenceSchedulerName: "STRING_VALUE", // required
|
|
31
31
|
* DataDelayOffsetInMinutes: Number("long"),
|
|
32
32
|
* DataUploadFrequency: "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
|
|
33
|
-
* DataInputConfiguration: {
|
|
34
|
-
* S3InputConfiguration: {
|
|
33
|
+
* DataInputConfiguration: { // InferenceInputConfiguration
|
|
34
|
+
* S3InputConfiguration: { // InferenceS3InputConfiguration
|
|
35
35
|
* Bucket: "STRING_VALUE", // required
|
|
36
36
|
* Prefix: "STRING_VALUE",
|
|
37
37
|
* },
|
|
38
38
|
* InputTimeZoneOffset: "STRING_VALUE",
|
|
39
|
-
* InferenceInputNameConfiguration: {
|
|
39
|
+
* InferenceInputNameConfiguration: { // InferenceInputNameConfiguration
|
|
40
40
|
* TimestampFormat: "STRING_VALUE",
|
|
41
41
|
* ComponentTimestampDelimiter: "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
44
|
-
* DataOutputConfiguration: {
|
|
45
|
-
* S3OutputConfiguration: {
|
|
44
|
+
* DataOutputConfiguration: { // InferenceOutputConfiguration
|
|
45
|
+
* S3OutputConfiguration: { // InferenceS3OutputConfiguration
|
|
46
46
|
* Bucket: "STRING_VALUE", // required
|
|
47
47
|
* Prefix: "STRING_VALUE",
|
|
48
48
|
* },
|
|
@@ -28,9 +28,9 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { LookoutEquipmentClient, UpdateLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
29
29
|
* // const { LookoutEquipmentClient, UpdateLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
30
30
|
* const client = new LookoutEquipmentClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateLabelGroupRequest
|
|
32
32
|
* LabelGroupName: "STRING_VALUE", // required
|
|
33
|
-
* FaultCodes: [
|
|
33
|
+
* FaultCodes: [ // FaultCodes
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lookoutequipment",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|