@aws-sdk/client-iotfleetwise 3.300.0 → 3.303.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-cjs/models/models_0.js +118 -136
- package/dist-es/models/models_0.js +118 -136
- package/dist-types/commands/AssociateVehicleFleetCommand.d.ts +1 -1
- package/dist-types/commands/BatchCreateVehicleCommand.d.ts +6 -6
- package/dist-types/commands/BatchUpdateVehicleCommand.d.ts +4 -4
- package/dist-types/commands/CreateCampaignCommand.d.ts +9 -9
- package/dist-types/commands/CreateDecoderManifestCommand.d.ts +11 -11
- package/dist-types/commands/CreateFleetCommand.d.ts +3 -3
- package/dist-types/commands/CreateModelManifestCommand.d.ts +4 -4
- package/dist-types/commands/CreateSignalCatalogCommand.d.ts +10 -10
- package/dist-types/commands/CreateVehicleCommand.d.ts +4 -4
- package/dist-types/commands/DeleteCampaignCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFleetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteModelManifestCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVehicleCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +1 -1
- package/dist-types/commands/GetCampaignCommand.d.ts +1 -1
- package/dist-types/commands/GetDecoderManifestCommand.d.ts +1 -1
- package/dist-types/commands/GetFleetCommand.d.ts +1 -1
- package/dist-types/commands/GetModelManifestCommand.d.ts +1 -1
- package/dist-types/commands/GetSignalCatalogCommand.d.ts +1 -1
- package/dist-types/commands/GetVehicleCommand.d.ts +1 -1
- package/dist-types/commands/GetVehicleStatusCommand.d.ts +1 -1
- package/dist-types/commands/ImportDecoderManifestCommand.d.ts +6 -6
- package/dist-types/commands/ImportSignalCatalogCommand.d.ts +4 -4
- package/dist-types/commands/ListCampaignsCommand.d.ts +1 -1
- package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +1 -1
- package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +1 -1
- package/dist-types/commands/ListDecoderManifestsCommand.d.ts +1 -1
- package/dist-types/commands/ListFleetsCommand.d.ts +1 -1
- package/dist-types/commands/ListFleetsForVehicleCommand.d.ts +1 -1
- package/dist-types/commands/ListModelManifestNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListModelManifestsCommand.d.ts +1 -1
- package/dist-types/commands/ListSignalCatalogNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListSignalCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVehiclesCommand.d.ts +1 -1
- package/dist-types/commands/ListVehiclesInFleetCommand.d.ts +1 -1
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +2 -2
- package/dist-types/commands/RegisterAccountCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCampaignCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +11 -11
- package/dist-types/commands/UpdateFleetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateModelManifestCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +11 -13
- package/dist-types/commands/UpdateVehicleCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +209 -119
- package/dist-types/ts3.4/models/models_0.d.ts +147 -118
- package/package.json +34 -34
|
@@ -32,18 +32,18 @@ export interface BatchCreateVehicleCommandOutput extends BatchCreateVehicleRespo
|
|
|
32
32
|
* import { IoTFleetWiseClient, BatchCreateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
33
33
|
* // const { IoTFleetWiseClient, BatchCreateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
34
34
|
* const client = new IoTFleetWiseClient(config);
|
|
35
|
-
* const input = {
|
|
36
|
-
* vehicles: [ // required
|
|
37
|
-
* {
|
|
35
|
+
* const input = { // BatchCreateVehicleRequest
|
|
36
|
+
* vehicles: [ // createVehicleRequestItems // required
|
|
37
|
+
* { // CreateVehicleRequestItem
|
|
38
38
|
* vehicleName: "STRING_VALUE", // required
|
|
39
39
|
* modelManifestArn: "STRING_VALUE", // required
|
|
40
40
|
* decoderManifestArn: "STRING_VALUE", // required
|
|
41
|
-
* attributes: {
|
|
41
|
+
* attributes: { // attributesMap
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* associationBehavior: "STRING_VALUE",
|
|
45
|
-
* tags: [
|
|
46
|
-
* {
|
|
45
|
+
* tags: [ // TagList
|
|
46
|
+
* { // Tag
|
|
47
47
|
* Key: "STRING_VALUE", // required
|
|
48
48
|
* Value: "STRING_VALUE", // required
|
|
49
49
|
* },
|
|
@@ -32,13 +32,13 @@ export interface BatchUpdateVehicleCommandOutput extends BatchUpdateVehicleRespo
|
|
|
32
32
|
* import { IoTFleetWiseClient, BatchUpdateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
33
33
|
* // const { IoTFleetWiseClient, BatchUpdateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
34
34
|
* const client = new IoTFleetWiseClient(config);
|
|
35
|
-
* const input = {
|
|
36
|
-
* vehicles: [ // required
|
|
37
|
-
* {
|
|
35
|
+
* const input = { // BatchUpdateVehicleRequest
|
|
36
|
+
* vehicles: [ // updateVehicleRequestItems // required
|
|
37
|
+
* { // UpdateVehicleRequestItem
|
|
38
38
|
* vehicleName: "STRING_VALUE", // required
|
|
39
39
|
* modelManifestArn: "STRING_VALUE",
|
|
40
40
|
* decoderManifestArn: "STRING_VALUE",
|
|
41
|
-
* attributes: {
|
|
41
|
+
* attributes: { // attributesMap
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* attributeUpdateMode: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
31
31
|
* import { IoTFleetWiseClient, CreateCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
32
32
|
* // const { IoTFleetWiseClient, CreateCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
33
33
|
* const client = new IoTFleetWiseClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateCampaignRequest
|
|
35
35
|
* name: "STRING_VALUE", // required
|
|
36
36
|
* description: "STRING_VALUE",
|
|
37
37
|
* signalCatalogArn: "STRING_VALUE", // required
|
|
@@ -43,29 +43,29 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
|
|
|
43
43
|
* spoolingMode: "STRING_VALUE",
|
|
44
44
|
* compression: "STRING_VALUE",
|
|
45
45
|
* priority: Number("int"),
|
|
46
|
-
* signalsToCollect: [
|
|
47
|
-
* {
|
|
46
|
+
* signalsToCollect: [ // SignalInformationList
|
|
47
|
+
* { // SignalInformation
|
|
48
48
|
* name: "STRING_VALUE", // required
|
|
49
49
|
* maxSampleCount: Number("long"),
|
|
50
50
|
* minimumSamplingIntervalMs: Number("long"),
|
|
51
51
|
* },
|
|
52
52
|
* ],
|
|
53
|
-
* collectionScheme: { // Union: only one key present
|
|
54
|
-
* timeBasedCollectionScheme: {
|
|
53
|
+
* collectionScheme: { // CollectionScheme Union: only one key present
|
|
54
|
+
* timeBasedCollectionScheme: { // TimeBasedCollectionScheme
|
|
55
55
|
* periodMs: Number("long"), // required
|
|
56
56
|
* },
|
|
57
|
-
* conditionBasedCollectionScheme: {
|
|
57
|
+
* conditionBasedCollectionScheme: { // ConditionBasedCollectionScheme
|
|
58
58
|
* expression: "STRING_VALUE", // required
|
|
59
59
|
* minimumTriggerIntervalMs: Number("long"),
|
|
60
60
|
* triggerMode: "STRING_VALUE",
|
|
61
61
|
* conditionLanguageVersion: Number("int"),
|
|
62
62
|
* },
|
|
63
63
|
* },
|
|
64
|
-
* dataExtraDimensions: [
|
|
64
|
+
* dataExtraDimensions: [ // DataExtraDimensionNodePathList
|
|
65
65
|
* "STRING_VALUE",
|
|
66
66
|
* ],
|
|
67
|
-
* tags: [
|
|
68
|
-
* {
|
|
67
|
+
* tags: [ // TagList
|
|
68
|
+
* { // Tag
|
|
69
69
|
* Key: "STRING_VALUE", // required
|
|
70
70
|
* Value: "STRING_VALUE", // required
|
|
71
71
|
* },
|
|
@@ -41,16 +41,16 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
|
|
|
41
41
|
* import { IoTFleetWiseClient, CreateDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
42
42
|
* // const { IoTFleetWiseClient, CreateDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
43
43
|
* const client = new IoTFleetWiseClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // CreateDecoderManifestRequest
|
|
45
45
|
* name: "STRING_VALUE", // required
|
|
46
46
|
* description: "STRING_VALUE",
|
|
47
47
|
* modelManifestArn: "STRING_VALUE", // required
|
|
48
|
-
* signalDecoders: [
|
|
49
|
-
* {
|
|
48
|
+
* signalDecoders: [ // SignalDecoders
|
|
49
|
+
* { // SignalDecoder
|
|
50
50
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
51
51
|
* type: "STRING_VALUE", // required
|
|
52
52
|
* interfaceId: "STRING_VALUE", // required
|
|
53
|
-
* canSignal: {
|
|
53
|
+
* canSignal: { // CanSignal
|
|
54
54
|
* messageId: Number("int"), // required
|
|
55
55
|
* isBigEndian: true || false, // required
|
|
56
56
|
* isSigned: true || false, // required
|
|
@@ -60,7 +60,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
|
|
|
60
60
|
* length: Number("int"), // required
|
|
61
61
|
* name: "STRING_VALUE",
|
|
62
62
|
* },
|
|
63
|
-
* obdSignal: {
|
|
63
|
+
* obdSignal: { // ObdSignal
|
|
64
64
|
* pidResponseLength: Number("int"), // required
|
|
65
65
|
* serviceMode: Number("int"), // required
|
|
66
66
|
* pid: Number("int"), // required
|
|
@@ -73,16 +73,16 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
|
|
|
73
73
|
* },
|
|
74
74
|
* },
|
|
75
75
|
* ],
|
|
76
|
-
* networkInterfaces: [
|
|
77
|
-
* {
|
|
76
|
+
* networkInterfaces: [ // NetworkInterfaces
|
|
77
|
+
* { // NetworkInterface
|
|
78
78
|
* interfaceId: "STRING_VALUE", // required
|
|
79
79
|
* type: "STRING_VALUE", // required
|
|
80
|
-
* canInterface: {
|
|
80
|
+
* canInterface: { // CanInterface
|
|
81
81
|
* name: "STRING_VALUE", // required
|
|
82
82
|
* protocolName: "STRING_VALUE",
|
|
83
83
|
* protocolVersion: "STRING_VALUE",
|
|
84
84
|
* },
|
|
85
|
-
* obdInterface: {
|
|
85
|
+
* obdInterface: { // ObdInterface
|
|
86
86
|
* name: "STRING_VALUE", // required
|
|
87
87
|
* requestMessageId: Number("int"), // required
|
|
88
88
|
* obdStandard: "STRING_VALUE",
|
|
@@ -93,8 +93,8 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
|
|
|
93
93
|
* },
|
|
94
94
|
* },
|
|
95
95
|
* ],
|
|
96
|
-
* tags: [
|
|
97
|
-
* {
|
|
96
|
+
* tags: [ // TagList
|
|
97
|
+
* { // Tag
|
|
98
98
|
* Key: "STRING_VALUE", // required
|
|
99
99
|
* Value: "STRING_VALUE", // required
|
|
100
100
|
* },
|
|
@@ -33,12 +33,12 @@ export interface CreateFleetCommandOutput extends CreateFleetResponse, __Metadat
|
|
|
33
33
|
* import { IoTFleetWiseClient, CreateFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
34
34
|
* // const { IoTFleetWiseClient, CreateFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
35
35
|
* const client = new IoTFleetWiseClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // CreateFleetRequest
|
|
37
37
|
* fleetId: "STRING_VALUE", // required
|
|
38
38
|
* description: "STRING_VALUE",
|
|
39
39
|
* signalCatalogArn: "STRING_VALUE", // required
|
|
40
|
-
* tags: [
|
|
41
|
-
* {
|
|
40
|
+
* tags: [ // TagList
|
|
41
|
+
* { // Tag
|
|
42
42
|
* Key: "STRING_VALUE", // required
|
|
43
43
|
* Value: "STRING_VALUE", // required
|
|
44
44
|
* },
|
|
@@ -29,15 +29,15 @@ export interface CreateModelManifestCommandOutput extends CreateModelManifestRes
|
|
|
29
29
|
* import { IoTFleetWiseClient, CreateModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, CreateModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateModelManifestRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* description: "STRING_VALUE",
|
|
35
|
-
* nodes: [ // required
|
|
35
|
+
* nodes: [ // listOfStrings // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* signalCatalogArn: "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
|
* },
|
|
@@ -27,27 +27,27 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
|
|
|
27
27
|
* import { IoTFleetWiseClient, CreateSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
28
28
|
* // const { IoTFleetWiseClient, CreateSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
29
29
|
* const client = new IoTFleetWiseClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateSignalCatalogRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* description: "STRING_VALUE",
|
|
33
|
-
* nodes: [
|
|
34
|
-
* { // Union: only one key present
|
|
35
|
-
* branch: {
|
|
33
|
+
* nodes: [ // Nodes
|
|
34
|
+
* { // Node Union: only one key present
|
|
35
|
+
* branch: { // Branch
|
|
36
36
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
37
37
|
* description: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
|
-
* sensor: {
|
|
39
|
+
* sensor: { // Sensor
|
|
40
40
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
41
41
|
* dataType: "STRING_VALUE", // required
|
|
42
42
|
* description: "STRING_VALUE",
|
|
43
43
|
* unit: "STRING_VALUE",
|
|
44
|
-
* allowedValues: [
|
|
44
|
+
* allowedValues: [ // listOfStrings
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
47
|
* min: Number("double"),
|
|
48
48
|
* max: Number("double"),
|
|
49
49
|
* },
|
|
50
|
-
* actuator: {
|
|
50
|
+
* actuator: { // Actuator
|
|
51
51
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
52
52
|
* dataType: "STRING_VALUE", // required
|
|
53
53
|
* description: "STRING_VALUE",
|
|
@@ -59,7 +59,7 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
|
|
|
59
59
|
* max: Number("double"),
|
|
60
60
|
* assignedValue: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
|
-
* attribute: {
|
|
62
|
+
* attribute: { // Attribute
|
|
63
63
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
64
64
|
* dataType: "STRING_VALUE", // required
|
|
65
65
|
* description: "STRING_VALUE",
|
|
@@ -74,8 +74,8 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
|
|
|
74
74
|
* },
|
|
75
75
|
* },
|
|
76
76
|
* ],
|
|
77
|
-
* tags: [
|
|
78
|
-
* {
|
|
77
|
+
* tags: [ // TagList
|
|
78
|
+
* { // Tag
|
|
79
79
|
* Key: "STRING_VALUE", // required
|
|
80
80
|
* Value: "STRING_VALUE", // required
|
|
81
81
|
* },
|
|
@@ -34,16 +34,16 @@ export interface CreateVehicleCommandOutput extends CreateVehicleResponse, __Met
|
|
|
34
34
|
* import { IoTFleetWiseClient, CreateVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
35
35
|
* // const { IoTFleetWiseClient, CreateVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
36
36
|
* const client = new IoTFleetWiseClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // CreateVehicleRequest
|
|
38
38
|
* vehicleName: "STRING_VALUE", // required
|
|
39
39
|
* modelManifestArn: "STRING_VALUE", // required
|
|
40
40
|
* decoderManifestArn: "STRING_VALUE", // required
|
|
41
|
-
* attributes: {
|
|
41
|
+
* attributes: { // attributesMap
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* associationBehavior: "STRING_VALUE",
|
|
45
|
-
* tags: [
|
|
46
|
-
* {
|
|
45
|
+
* tags: [ // TagList
|
|
46
|
+
* { // Tag
|
|
47
47
|
* Key: "STRING_VALUE", // required
|
|
48
48
|
* Value: "STRING_VALUE", // required
|
|
49
49
|
* },
|
|
@@ -27,7 +27,7 @@ export interface DeleteCampaignCommandOutput extends DeleteCampaignResponse, __M
|
|
|
27
27
|
* import { IoTFleetWiseClient, DeleteCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
28
28
|
* // const { IoTFleetWiseClient, DeleteCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
29
29
|
* const client = new IoTFleetWiseClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteCampaignRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteCampaignCommand(input);
|
|
@@ -31,7 +31,7 @@ export interface DeleteDecoderManifestCommandOutput extends DeleteDecoderManifes
|
|
|
31
31
|
* import { IoTFleetWiseClient, DeleteDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
32
32
|
* // const { IoTFleetWiseClient, DeleteDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
33
33
|
* const client = new IoTFleetWiseClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // DeleteDecoderManifestRequest
|
|
35
35
|
* name: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteDecoderManifestCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __Metadat
|
|
|
32
32
|
* import { IoTFleetWiseClient, DeleteFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
33
33
|
* // const { IoTFleetWiseClient, DeleteFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
34
34
|
* const client = new IoTFleetWiseClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DeleteFleetRequest
|
|
36
36
|
* fleetId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeleteFleetCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeleteModelManifestCommandOutput extends DeleteModelManifestRes
|
|
|
30
30
|
* import { IoTFleetWiseClient, DeleteModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
31
31
|
* // const { IoTFleetWiseClient, DeleteModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
32
32
|
* const client = new IoTFleetWiseClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteModelManifestRequest
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteModelManifestCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeleteSignalCatalogCommandOutput extends DeleteSignalCatalogRes
|
|
|
30
30
|
* import { IoTFleetWiseClient, DeleteSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
31
31
|
* // const { IoTFleetWiseClient, DeleteSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
32
32
|
* const client = new IoTFleetWiseClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteSignalCatalogRequest
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSignalCatalogCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeleteVehicleCommandOutput extends DeleteVehicleResponse, __Met
|
|
|
30
30
|
* import { IoTFleetWiseClient, DeleteVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
31
31
|
* // const { IoTFleetWiseClient, DeleteVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
32
32
|
* const client = new IoTFleetWiseClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteVehicleRequest
|
|
34
34
|
* vehicleName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteVehicleCommand(input);
|
|
@@ -31,7 +31,7 @@ export interface DisassociateVehicleFleetCommandOutput extends DisassociateVehic
|
|
|
31
31
|
* import { IoTFleetWiseClient, DisassociateVehicleFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
32
32
|
* // const { IoTFleetWiseClient, DisassociateVehicleFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
33
33
|
* const client = new IoTFleetWiseClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // DisassociateVehicleFleetRequest
|
|
35
35
|
* vehicleName: "STRING_VALUE", // required
|
|
36
36
|
* fleetId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
|
|
|
26
26
|
* import { IoTFleetWiseClient, GetCampaignCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, GetCampaignCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetCampaignRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCampaignCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetDecoderManifestCommandOutput extends GetDecoderManifestRespo
|
|
|
26
26
|
* import { IoTFleetWiseClient, GetDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, GetDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetDecoderManifestRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDecoderManifestCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetFleetCommandOutput extends GetFleetResponse, __MetadataBeare
|
|
|
26
26
|
* import { IoTFleetWiseClient, GetFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, GetFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetFleetRequest
|
|
30
30
|
* fleetId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetFleetCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetModelManifestCommandOutput extends GetModelManifestResponse,
|
|
|
26
26
|
* import { IoTFleetWiseClient, GetModelManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, GetModelManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetModelManifestRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetModelManifestCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetSignalCatalogCommandOutput extends GetSignalCatalogResponse,
|
|
|
26
26
|
* import { IoTFleetWiseClient, GetSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, GetSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetSignalCatalogRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSignalCatalogCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetVehicleCommandOutput extends GetVehicleResponse, __MetadataB
|
|
|
26
26
|
* import { IoTFleetWiseClient, GetVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, GetVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetVehicleRequest
|
|
30
30
|
* vehicleName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetVehicleCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetVehicleStatusCommandOutput extends GetVehicleStatusResponse,
|
|
|
27
27
|
* import { IoTFleetWiseClient, GetVehicleStatusCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
28
28
|
* // const { IoTFleetWiseClient, GetVehicleStatusCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
29
29
|
* const client = new IoTFleetWiseClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetVehicleStatusRequest
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* vehicleName: "STRING_VALUE", // required
|
|
@@ -27,16 +27,16 @@ export interface ImportDecoderManifestCommandOutput extends ImportDecoderManifes
|
|
|
27
27
|
* import { IoTFleetWiseClient, ImportDecoderManifestCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
28
28
|
* // const { IoTFleetWiseClient, ImportDecoderManifestCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
29
29
|
* const client = new IoTFleetWiseClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ImportDecoderManifestRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
|
-
* networkFileDefinitions: [ // required
|
|
33
|
-
* { // Union: only one key present
|
|
34
|
-
* canDbc: {
|
|
32
|
+
* networkFileDefinitions: [ // NetworkFileDefinitions // required
|
|
33
|
+
* { // NetworkFileDefinition Union: only one key present
|
|
34
|
+
* canDbc: { // CanDbcDefinition
|
|
35
35
|
* networkInterface: "STRING_VALUE", // required
|
|
36
|
-
* canDbcFiles: [ // required
|
|
36
|
+
* canDbcFiles: [ // NetworkFilesList // required
|
|
37
37
|
* "BLOB_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* signalsMap: {
|
|
39
|
+
* signalsMap: { // ModelSignalsMap
|
|
40
40
|
* "<keys>": "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
@@ -27,14 +27,14 @@ export interface ImportSignalCatalogCommandOutput extends ImportSignalCatalogRes
|
|
|
27
27
|
* import { IoTFleetWiseClient, ImportSignalCatalogCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
28
28
|
* // const { IoTFleetWiseClient, ImportSignalCatalogCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
29
29
|
* const client = new IoTFleetWiseClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ImportSignalCatalogRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* description: "STRING_VALUE",
|
|
33
|
-
* vss: { // Union: only one key present
|
|
33
|
+
* vss: { // FormattedVss Union: only one key present
|
|
34
34
|
* vssJson: "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
|
-
* tags: [
|
|
37
|
-
* {
|
|
36
|
+
* tags: [ // TagList
|
|
37
|
+
* { // Tag
|
|
38
38
|
* Key: "STRING_VALUE", // required
|
|
39
39
|
* Value: "STRING_VALUE", // required
|
|
40
40
|
* },
|
|
@@ -29,7 +29,7 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListCampaignsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListCampaignsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListCampaignsRequest
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* maxResults: Number("int"),
|
|
35
35
|
* status: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput extends ListD
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListDecoderManifestNetworkInterfacesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListDecoderManifestNetworkInterfacesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListDecoderManifestNetworkInterfacesRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListDecoderManifestSignalsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListDecoderManifestSignalsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListDecoderManifestSignalsRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListDecoderManifestsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListDecoderManifestsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListDecoderManifestsRequest
|
|
33
33
|
* modelManifestArn: "STRING_VALUE",
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListFleetsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListFleetsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListFleetsRequest
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* maxResults: Number("int"),
|
|
35
35
|
* };
|
|
@@ -29,7 +29,7 @@ export interface ListFleetsForVehicleCommandOutput extends ListFleetsForVehicleR
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListFleetsForVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListFleetsForVehicleCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListFleetsForVehicleRequest
|
|
33
33
|
* vehicleName: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListModelManifestNodesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListModelManifestNodesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListModelManifestNodesRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListModelManifestsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListModelManifestsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListModelManifestsRequest
|
|
33
33
|
* signalCatalogArn: "STRING_VALUE",
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListSignalCatalogNodesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListSignalCatalogNodesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListSignalCatalogNodesRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -31,7 +31,7 @@ export interface ListSignalCatalogsCommandOutput extends ListSignalCatalogsRespo
|
|
|
31
31
|
* import { IoTFleetWiseClient, ListSignalCatalogsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
32
32
|
* // const { IoTFleetWiseClient, ListSignalCatalogsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
33
33
|
* const client = new IoTFleetWiseClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListSignalCatalogsRequest
|
|
35
35
|
* nextToken: "STRING_VALUE",
|
|
36
36
|
* maxResults: Number("int"),
|
|
37
37
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { IoTFleetWiseClient, ListTagsForResourceCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __Metad
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListVehiclesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListVehiclesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListVehiclesRequest
|
|
33
33
|
* modelManifestArn: "STRING_VALUE",
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListVehiclesInFleetCommandOutput extends ListVehiclesInFleetRes
|
|
|
29
29
|
* import { IoTFleetWiseClient, ListVehiclesInFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
30
30
|
* // const { IoTFleetWiseClient, ListVehiclesInFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
31
31
|
* const client = new IoTFleetWiseClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListVehiclesInFleetRequest
|
|
33
33
|
* fleetId: "STRING_VALUE", // required
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -26,8 +26,8 @@ export interface PutLoggingOptionsCommandOutput extends PutLoggingOptionsRespons
|
|
|
26
26
|
* import { IoTFleetWiseClient, PutLoggingOptionsCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import
|
|
27
27
|
* // const { IoTFleetWiseClient, PutLoggingOptionsCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import
|
|
28
28
|
* const client = new IoTFleetWiseClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* cloudWatchLogDelivery: {
|
|
29
|
+
* const input = { // PutLoggingOptionsRequest
|
|
30
|
+
* cloudWatchLogDelivery: { // CloudWatchLogDeliveryOptions
|
|
31
31
|
* logType: "STRING_VALUE", // required
|
|
32
32
|
* logGroupName: "STRING_VALUE",
|
|
33
33
|
* },
|