@aws-sdk/client-iotfleetwise 3.454.0 → 3.460.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/README.md +52 -52
- package/dist-cjs/models/models_0.js +86 -16
- package/dist-cjs/protocols/Aws_json1_0.js +142 -0
- package/dist-es/models/models_0.js +84 -14
- package/dist-es/protocols/Aws_json1_0.js +143 -1
- package/dist-types/IoTFleetWise.d.ts +1 -1
- package/dist-types/IoTFleetWiseClient.d.ts +1 -1
- package/dist-types/commands/AssociateVehicleFleetCommand.d.ts +3 -0
- package/dist-types/commands/BatchCreateVehicleCommand.d.ts +3 -3
- package/dist-types/commands/BatchUpdateVehicleCommand.d.ts +3 -3
- package/dist-types/commands/CreateCampaignCommand.d.ts +1 -1
- package/dist-types/commands/CreateDecoderManifestCommand.d.ts +55 -5
- package/dist-types/commands/CreateFleetCommand.d.ts +3 -3
- package/dist-types/commands/CreateModelManifestCommand.d.ts +1 -1
- package/dist-types/commands/CreateSignalCatalogCommand.d.ts +17 -0
- package/dist-types/commands/CreateVehicleCommand.d.ts +3 -3
- package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +2 -2
- package/dist-types/commands/DeleteFleetCommand.d.ts +2 -2
- package/dist-types/commands/DeleteModelManifestCommand.d.ts +2 -2
- package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +2 -2
- package/dist-types/commands/DeleteVehicleCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +2 -2
- package/dist-types/commands/GetDecoderManifestCommand.d.ts +1 -0
- package/dist-types/commands/GetRegisterAccountStatusCommand.d.ts +3 -3
- package/dist-types/commands/GetSignalCatalogCommand.d.ts +2 -0
- package/dist-types/commands/ListCampaignsCommand.d.ts +1 -1
- package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +5 -1
- package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +47 -1
- package/dist-types/commands/ListDecoderManifestsCommand.d.ts +2 -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 +18 -1
- package/dist-types/commands/ListModelManifestsCommand.d.ts +1 -1
- package/dist-types/commands/ListSignalCatalogNodesCommand.d.ts +18 -1
- package/dist-types/commands/ListSignalCatalogsCommand.d.ts +2 -2
- package/dist-types/commands/ListVehiclesCommand.d.ts +1 -1
- package/dist-types/commands/ListVehiclesInFleetCommand.d.ts +1 -1
- package/dist-types/commands/RegisterAccountCommand.d.ts +4 -5
- package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +59 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +34 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +679 -265
- package/dist-types/ts3.4/models/models_0.d.ts +235 -39
- package/package.json +12 -12
|
@@ -24,7 +24,7 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput extends ListD
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Lists the network interfaces specified in a decoder manifest. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -59,6 +59,10 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput extends ListD
|
|
|
59
59
|
* // useExtendedIds: true || false,
|
|
60
60
|
* // hasTransmissionEcu: true || false,
|
|
61
61
|
* // },
|
|
62
|
+
* // vehicleMiddleware: { // VehicleMiddleware
|
|
63
|
+
* // name: "STRING_VALUE", // required
|
|
64
|
+
* // protocolName: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
62
66
|
* // },
|
|
63
67
|
* // ],
|
|
64
68
|
* // nextToken: "STRING_VALUE",
|
|
@@ -24,7 +24,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> A list of information about signal decoders specified in a decoder manifest. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -67,6 +67,52 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
|
|
|
67
67
|
* // bitRightShift: Number("int"),
|
|
68
68
|
* // bitMaskLength: Number("int"),
|
|
69
69
|
* // },
|
|
70
|
+
* // messageSignal: { // MessageSignal
|
|
71
|
+
* // topicName: "STRING_VALUE", // required
|
|
72
|
+
* // structuredMessage: { // StructuredMessage Union: only one key present
|
|
73
|
+
* // primitiveMessageDefinition: { // PrimitiveMessageDefinition Union: only one key present
|
|
74
|
+
* // ros2PrimitiveMessageDefinition: { // ROS2PrimitiveMessageDefinition
|
|
75
|
+
* // primitiveType: "STRING_VALUE", // required
|
|
76
|
+
* // offset: Number("double"),
|
|
77
|
+
* // scaling: Number("double"),
|
|
78
|
+
* // upperBound: Number("long"),
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // structuredMessageListDefinition: { // StructuredMessageListDefinition
|
|
82
|
+
* // name: "STRING_VALUE", // required
|
|
83
|
+
* // memberType: {// Union: only one key present
|
|
84
|
+
* // primitiveMessageDefinition: {// Union: only one key present
|
|
85
|
+
* // ros2PrimitiveMessageDefinition: {
|
|
86
|
+
* // primitiveType: "STRING_VALUE", // required
|
|
87
|
+
* // offset: Number("double"),
|
|
88
|
+
* // scaling: Number("double"),
|
|
89
|
+
* // upperBound: Number("long"),
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // structuredMessageListDefinition: {
|
|
93
|
+
* // name: "STRING_VALUE", // required
|
|
94
|
+
* // memberType: "<StructuredMessage>", // required
|
|
95
|
+
* // listType: "STRING_VALUE", // required
|
|
96
|
+
* // capacity: Number("int"),
|
|
97
|
+
* // },
|
|
98
|
+
* // structuredMessageDefinition: [ // StructuredMessageDefinition
|
|
99
|
+
* // { // StructuredMessageFieldNameAndDataTypePair
|
|
100
|
+
* // fieldName: "STRING_VALUE", // required
|
|
101
|
+
* // dataType: "<StructuredMessage>", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // },
|
|
105
|
+
* // listType: "STRING_VALUE", // required
|
|
106
|
+
* // capacity: Number("int"),
|
|
107
|
+
* // },
|
|
108
|
+
* // structuredMessageDefinition: [
|
|
109
|
+
* // {
|
|
110
|
+
* // fieldName: "STRING_VALUE", // required
|
|
111
|
+
* // dataType: "<StructuredMessage>", // required
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // },
|
|
115
|
+
* // },
|
|
70
116
|
* // },
|
|
71
117
|
* // ],
|
|
72
118
|
* // nextToken: "STRING_VALUE",
|
|
@@ -24,7 +24,7 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Lists decoder manifests. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -50,6 +50,7 @@ export interface ListDecoderManifestsCommandOutput extends ListDecoderManifestsR
|
|
|
50
50
|
* // status: "STRING_VALUE",
|
|
51
51
|
* // creationTime: new Date("TIMESTAMP"), // required
|
|
52
52
|
* // lastModificationTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // message: "STRING_VALUE",
|
|
53
54
|
* // },
|
|
54
55
|
* // ],
|
|
55
56
|
* // nextToken: "STRING_VALUE",
|
|
@@ -24,7 +24,7 @@ export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataB
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Retrieves information for each created fleet in an Amazon Web Services account. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -24,7 +24,7 @@ export interface ListFleetsForVehicleCommandOutput extends ListFleetsForVehicleR
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Retrieves a list of IDs for all fleets that the vehicle is associated with.</p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -24,7 +24,7 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Lists information about nodes specified in a vehicle model (model manifest). </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -61,6 +61,7 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
|
|
|
61
61
|
* // max: Number("double"),
|
|
62
62
|
* // deprecationMessage: "STRING_VALUE",
|
|
63
63
|
* // comment: "STRING_VALUE",
|
|
64
|
+
* // structFullyQualifiedName: "STRING_VALUE",
|
|
64
65
|
* // },
|
|
65
66
|
* // actuator: { // Actuator
|
|
66
67
|
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -75,6 +76,7 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
|
|
|
75
76
|
* // assignedValue: "STRING_VALUE",
|
|
76
77
|
* // deprecationMessage: "STRING_VALUE",
|
|
77
78
|
* // comment: "STRING_VALUE",
|
|
79
|
+
* // structFullyQualifiedName: "STRING_VALUE",
|
|
78
80
|
* // },
|
|
79
81
|
* // attribute: { // Attribute
|
|
80
82
|
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -91,6 +93,21 @@ export interface ListModelManifestNodesCommandOutput extends ListModelManifestNo
|
|
|
91
93
|
* // deprecationMessage: "STRING_VALUE",
|
|
92
94
|
* // comment: "STRING_VALUE",
|
|
93
95
|
* // },
|
|
96
|
+
* // struct: { // CustomStruct
|
|
97
|
+
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
98
|
+
* // description: "STRING_VALUE",
|
|
99
|
+
* // deprecationMessage: "STRING_VALUE",
|
|
100
|
+
* // comment: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // property: { // CustomProperty
|
|
103
|
+
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
104
|
+
* // dataType: "STRING_VALUE", // required
|
|
105
|
+
* // dataEncoding: "STRING_VALUE",
|
|
106
|
+
* // description: "STRING_VALUE",
|
|
107
|
+
* // deprecationMessage: "STRING_VALUE",
|
|
108
|
+
* // comment: "STRING_VALUE",
|
|
109
|
+
* // structFullyQualifiedName: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
94
111
|
* // },
|
|
95
112
|
* // ],
|
|
96
113
|
* // nextToken: "STRING_VALUE",
|
|
@@ -24,7 +24,7 @@ export interface ListModelManifestsCommandOutput extends ListModelManifestsRespo
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Retrieves a list of vehicle models (model manifests). </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -24,7 +24,7 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Lists of information about the signals (nodes) specified in a signal catalog. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -61,6 +61,7 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
|
|
|
61
61
|
* // max: Number("double"),
|
|
62
62
|
* // deprecationMessage: "STRING_VALUE",
|
|
63
63
|
* // comment: "STRING_VALUE",
|
|
64
|
+
* // structFullyQualifiedName: "STRING_VALUE",
|
|
64
65
|
* // },
|
|
65
66
|
* // actuator: { // Actuator
|
|
66
67
|
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -75,6 +76,7 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
|
|
|
75
76
|
* // assignedValue: "STRING_VALUE",
|
|
76
77
|
* // deprecationMessage: "STRING_VALUE",
|
|
77
78
|
* // comment: "STRING_VALUE",
|
|
79
|
+
* // structFullyQualifiedName: "STRING_VALUE",
|
|
78
80
|
* // },
|
|
79
81
|
* // attribute: { // Attribute
|
|
80
82
|
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -91,6 +93,21 @@ export interface ListSignalCatalogNodesCommandOutput extends ListSignalCatalogNo
|
|
|
91
93
|
* // deprecationMessage: "STRING_VALUE",
|
|
92
94
|
* // comment: "STRING_VALUE",
|
|
93
95
|
* // },
|
|
96
|
+
* // struct: { // CustomStruct
|
|
97
|
+
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
98
|
+
* // description: "STRING_VALUE",
|
|
99
|
+
* // deprecationMessage: "STRING_VALUE",
|
|
100
|
+
* // comment: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // property: { // CustomProperty
|
|
103
|
+
* // fullyQualifiedName: "STRING_VALUE", // required
|
|
104
|
+
* // dataType: "STRING_VALUE", // required
|
|
105
|
+
* // dataEncoding: "STRING_VALUE",
|
|
106
|
+
* // description: "STRING_VALUE",
|
|
107
|
+
* // deprecationMessage: "STRING_VALUE",
|
|
108
|
+
* // comment: "STRING_VALUE",
|
|
109
|
+
* // structFullyQualifiedName: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
94
111
|
* // },
|
|
95
112
|
* // ],
|
|
96
113
|
* // nextToken: "STRING_VALUE",
|
|
@@ -24,9 +24,9 @@ export interface ListSignalCatalogsCommandOutput extends ListSignalCatalogsRespo
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Lists all the created signal catalogs in an Amazon Web Services account. </p>
|
|
27
|
-
*
|
|
27
|
+
* <p>You can use to list information about
|
|
28
28
|
* each signal (node) specified in a signal catalog.</p>
|
|
29
|
-
*
|
|
29
|
+
* <note>
|
|
30
30
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
31
31
|
* </note>
|
|
32
32
|
* @example
|
|
@@ -24,7 +24,7 @@ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __Metad
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Retrieves a list of summaries of created vehicles. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -24,7 +24,7 @@ export interface ListVehiclesInFleetCommandOutput extends ListVehiclesInFleetRes
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Retrieves a list of summaries of all vehicles associated with a fleet. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>This API operation uses pagination. Specify the <code>nextToken</code> parameter in the request to return more results.</p>
|
|
29
29
|
* </note>
|
|
30
30
|
* @example
|
|
@@ -27,18 +27,17 @@ export interface RegisterAccountCommandOutput extends RegisterAccountResponse, _
|
|
|
27
27
|
* <p>This API operation contains deprecated parameters. Register your account again without the Timestream resources parameter so that Amazon Web Services IoT FleetWise can remove the Timestream metadata stored. You should then pass the data destination into the <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/APIReference/API_CreateCampaign.html">CreateCampaign</a> API operation.</p>
|
|
28
28
|
* <p>You must delete any existing campaigns that include an empty data destination before you register your account again. For more information, see the <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/APIReference/API_DeleteCampaign.html">DeleteCampaign</a> API operation.</p>
|
|
29
29
|
* <p>If you want to delete the Timestream inline policy from the service-linked role, such as to mitigate an overly permissive policy, you must first delete any existing campaigns. Then delete the service-linked role and register your account again to enable CloudWatch metrics. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServiceLinkedRole.html">DeleteServiceLinkedRole</a> in the <i>Identity and Access Management API Reference</i>.</p>
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
* <p>Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can
|
|
30
|
+
* </important>
|
|
31
|
+
* <p>Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can
|
|
33
32
|
* transfer your vehicle data to the Amazon Web Services Cloud. For more information, including
|
|
34
33
|
* step-by-step procedures, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/setting-up.html">Setting up
|
|
35
34
|
* Amazon Web Services IoT FleetWise</a>. </p>
|
|
36
|
-
*
|
|
35
|
+
* <note>
|
|
37
36
|
* <p>An Amazon Web Services account is <b>not</b> the same thing as a "user." An <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction_identity-management.html#intro-identity-users">Amazon Web Services user</a> is an identity that you create using Identity and Access Management (IAM) and
|
|
38
37
|
* takes the form of either an <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users.html">IAM user</a> or an <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM role, both
|
|
39
38
|
* with credentials</a>. A single Amazon Web Services account can, and typically does,
|
|
40
39
|
* contain many users and roles.</p>
|
|
41
|
-
*
|
|
40
|
+
* </note>
|
|
42
41
|
* @example
|
|
43
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
43
|
* ```javascript
|
|
@@ -24,7 +24,7 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Updates a decoder manifest.</p>
|
|
27
|
-
*
|
|
27
|
+
* <p>A decoder manifest can only be updated when the status is <code>DRAFT</code>. Only
|
|
28
28
|
* <code>ACTIVE</code> decoder manifests can be associated with vehicles.</p>
|
|
29
29
|
* @example
|
|
30
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -61,6 +61,52 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
|
|
|
61
61
|
* bitRightShift: Number("int"),
|
|
62
62
|
* bitMaskLength: Number("int"),
|
|
63
63
|
* },
|
|
64
|
+
* messageSignal: { // MessageSignal
|
|
65
|
+
* topicName: "STRING_VALUE", // required
|
|
66
|
+
* structuredMessage: { // StructuredMessage Union: only one key present
|
|
67
|
+
* primitiveMessageDefinition: { // PrimitiveMessageDefinition Union: only one key present
|
|
68
|
+
* ros2PrimitiveMessageDefinition: { // ROS2PrimitiveMessageDefinition
|
|
69
|
+
* primitiveType: "STRING_VALUE", // required
|
|
70
|
+
* offset: Number("double"),
|
|
71
|
+
* scaling: Number("double"),
|
|
72
|
+
* upperBound: Number("long"),
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* structuredMessageListDefinition: { // StructuredMessageListDefinition
|
|
76
|
+
* name: "STRING_VALUE", // required
|
|
77
|
+
* memberType: {// Union: only one key present
|
|
78
|
+
* primitiveMessageDefinition: {// Union: only one key present
|
|
79
|
+
* ros2PrimitiveMessageDefinition: {
|
|
80
|
+
* primitiveType: "STRING_VALUE", // required
|
|
81
|
+
* offset: Number("double"),
|
|
82
|
+
* scaling: Number("double"),
|
|
83
|
+
* upperBound: Number("long"),
|
|
84
|
+
* },
|
|
85
|
+
* },
|
|
86
|
+
* structuredMessageListDefinition: {
|
|
87
|
+
* name: "STRING_VALUE", // required
|
|
88
|
+
* memberType: "<StructuredMessage>", // required
|
|
89
|
+
* listType: "STRING_VALUE", // required
|
|
90
|
+
* capacity: Number("int"),
|
|
91
|
+
* },
|
|
92
|
+
* structuredMessageDefinition: [ // StructuredMessageDefinition
|
|
93
|
+
* { // StructuredMessageFieldNameAndDataTypePair
|
|
94
|
+
* fieldName: "STRING_VALUE", // required
|
|
95
|
+
* dataType: "<StructuredMessage>", // required
|
|
96
|
+
* },
|
|
97
|
+
* ],
|
|
98
|
+
* },
|
|
99
|
+
* listType: "STRING_VALUE", // required
|
|
100
|
+
* capacity: Number("int"),
|
|
101
|
+
* },
|
|
102
|
+
* structuredMessageDefinition: [
|
|
103
|
+
* {
|
|
104
|
+
* fieldName: "STRING_VALUE", // required
|
|
105
|
+
* dataType: "<StructuredMessage>", // required
|
|
106
|
+
* },
|
|
107
|
+
* ],
|
|
108
|
+
* },
|
|
109
|
+
* },
|
|
64
110
|
* },
|
|
65
111
|
* ],
|
|
66
112
|
* signalDecodersToUpdate: [
|
|
@@ -89,6 +135,10 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
|
|
|
89
135
|
* bitRightShift: Number("int"),
|
|
90
136
|
* bitMaskLength: Number("int"),
|
|
91
137
|
* },
|
|
138
|
+
* messageSignal: {
|
|
139
|
+
* topicName: "STRING_VALUE", // required
|
|
140
|
+
* structuredMessage: "<StructuredMessage>", // required
|
|
141
|
+
* },
|
|
92
142
|
* },
|
|
93
143
|
* ],
|
|
94
144
|
* signalDecodersToRemove: [ // Fqns
|
|
@@ -112,6 +162,10 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
|
|
|
112
162
|
* useExtendedIds: true || false,
|
|
113
163
|
* hasTransmissionEcu: true || false,
|
|
114
164
|
* },
|
|
165
|
+
* vehicleMiddleware: { // VehicleMiddleware
|
|
166
|
+
* name: "STRING_VALUE", // required
|
|
167
|
+
* protocolName: "STRING_VALUE", // required
|
|
168
|
+
* },
|
|
115
169
|
* },
|
|
116
170
|
* ],
|
|
117
171
|
* networkInterfacesToUpdate: [
|
|
@@ -132,6 +186,10 @@ export interface UpdateDecoderManifestCommandOutput extends UpdateDecoderManifes
|
|
|
132
186
|
* useExtendedIds: true || false,
|
|
133
187
|
* hasTransmissionEcu: true || false,
|
|
134
188
|
* },
|
|
189
|
+
* vehicleMiddleware: {
|
|
190
|
+
* name: "STRING_VALUE", // required
|
|
191
|
+
* protocolName: "STRING_VALUE", // required
|
|
192
|
+
* },
|
|
135
193
|
* },
|
|
136
194
|
* ],
|
|
137
195
|
* networkInterfacesToRemove: [ // InterfaceIds
|
|
@@ -24,10 +24,10 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResponse, __Metadat
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p> Updates the description of an existing fleet. </p>
|
|
27
|
-
*
|
|
27
|
+
* <note>
|
|
28
28
|
* <p>If the fleet is successfully updated, Amazon Web Services IoT FleetWise sends back an HTTP 200 response
|
|
29
29
|
* with an empty HTTP body.</p>
|
|
30
|
-
*
|
|
30
|
+
* </note>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -53,6 +53,7 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
|
|
|
53
53
|
* max: Number("double"),
|
|
54
54
|
* deprecationMessage: "STRING_VALUE",
|
|
55
55
|
* comment: "STRING_VALUE",
|
|
56
|
+
* structFullyQualifiedName: "STRING_VALUE",
|
|
56
57
|
* },
|
|
57
58
|
* actuator: { // Actuator
|
|
58
59
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -67,6 +68,7 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
|
|
|
67
68
|
* assignedValue: "STRING_VALUE",
|
|
68
69
|
* deprecationMessage: "STRING_VALUE",
|
|
69
70
|
* comment: "STRING_VALUE",
|
|
71
|
+
* structFullyQualifiedName: "STRING_VALUE",
|
|
70
72
|
* },
|
|
71
73
|
* attribute: { // Attribute
|
|
72
74
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -83,6 +85,21 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
|
|
|
83
85
|
* deprecationMessage: "STRING_VALUE",
|
|
84
86
|
* comment: "STRING_VALUE",
|
|
85
87
|
* },
|
|
88
|
+
* struct: { // CustomStruct
|
|
89
|
+
* fullyQualifiedName: "STRING_VALUE", // required
|
|
90
|
+
* description: "STRING_VALUE",
|
|
91
|
+
* deprecationMessage: "STRING_VALUE",
|
|
92
|
+
* comment: "STRING_VALUE",
|
|
93
|
+
* },
|
|
94
|
+
* property: { // CustomProperty
|
|
95
|
+
* fullyQualifiedName: "STRING_VALUE", // required
|
|
96
|
+
* dataType: "STRING_VALUE", // required
|
|
97
|
+
* dataEncoding: "STRING_VALUE",
|
|
98
|
+
* description: "STRING_VALUE",
|
|
99
|
+
* deprecationMessage: "STRING_VALUE",
|
|
100
|
+
* comment: "STRING_VALUE",
|
|
101
|
+
* structFullyQualifiedName: "STRING_VALUE",
|
|
102
|
+
* },
|
|
86
103
|
* },
|
|
87
104
|
* ],
|
|
88
105
|
* nodesToUpdate: [
|
|
@@ -105,6 +122,7 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
|
|
|
105
122
|
* max: Number("double"),
|
|
106
123
|
* deprecationMessage: "STRING_VALUE",
|
|
107
124
|
* comment: "STRING_VALUE",
|
|
125
|
+
* structFullyQualifiedName: "STRING_VALUE",
|
|
108
126
|
* },
|
|
109
127
|
* actuator: {
|
|
110
128
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -119,6 +137,7 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
|
|
|
119
137
|
* assignedValue: "STRING_VALUE",
|
|
120
138
|
* deprecationMessage: "STRING_VALUE",
|
|
121
139
|
* comment: "STRING_VALUE",
|
|
140
|
+
* structFullyQualifiedName: "STRING_VALUE",
|
|
122
141
|
* },
|
|
123
142
|
* attribute: {
|
|
124
143
|
* fullyQualifiedName: "STRING_VALUE", // required
|
|
@@ -133,6 +152,21 @@ export interface UpdateSignalCatalogCommandOutput extends UpdateSignalCatalogRes
|
|
|
133
152
|
* deprecationMessage: "STRING_VALUE",
|
|
134
153
|
* comment: "STRING_VALUE",
|
|
135
154
|
* },
|
|
155
|
+
* struct: {
|
|
156
|
+
* fullyQualifiedName: "STRING_VALUE", // required
|
|
157
|
+
* description: "STRING_VALUE",
|
|
158
|
+
* deprecationMessage: "STRING_VALUE",
|
|
159
|
+
* comment: "STRING_VALUE",
|
|
160
|
+
* },
|
|
161
|
+
* property: {
|
|
162
|
+
* fullyQualifiedName: "STRING_VALUE", // required
|
|
163
|
+
* dataType: "STRING_VALUE", // required
|
|
164
|
+
* dataEncoding: "STRING_VALUE",
|
|
165
|
+
* description: "STRING_VALUE",
|
|
166
|
+
* deprecationMessage: "STRING_VALUE",
|
|
167
|
+
* comment: "STRING_VALUE",
|
|
168
|
+
* structFullyQualifiedName: "STRING_VALUE",
|
|
169
|
+
* },
|
|
136
170
|
* },
|
|
137
171
|
* ],
|
|
138
172
|
* nodesToRemove: [ // NodePaths
|
package/dist-types/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* your vehicle data models, independent of the in-vehicle communication architecture, and
|
|
5
5
|
* define data collection rules to transfer only high-value data to the cloud.
|
|
6
6
|
* </p>
|
|
7
|
-
*
|
|
7
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/">What is Amazon Web Services IoT FleetWise?</a> in the
|
|
8
8
|
* <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
|
|
9
9
|
*
|
|
10
10
|
* @packageDocumentation
|