@aws-sdk/client-iotfleetwise 3.583.0 → 3.584.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.
@@ -38,6 +38,12 @@ declare const ListVehiclesCommand_base: {
38
38
  * const client = new IoTFleetWiseClient(config);
39
39
  * const input = { // ListVehiclesRequest
40
40
  * modelManifestArn: "STRING_VALUE",
41
+ * attributeNames: [ // attributeNamesList
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * attributeValues: [ // attributeValuesList
45
+ * "STRING_VALUE",
46
+ * ],
41
47
  * nextToken: "STRING_VALUE",
42
48
  * maxResults: Number("int"),
43
49
  * };
@@ -952,7 +952,7 @@ export interface CreateCampaignRequest {
952
952
  */
953
953
  description?: string;
954
954
  /**
955
- * <p>(Optional) The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign.
955
+ * <p>The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign.
956
956
  * </p>
957
957
  * @public
958
958
  */
@@ -4248,6 +4248,19 @@ export interface ListVehiclesRequest {
4248
4248
  * @public
4249
4249
  */
4250
4250
  modelManifestArn?: string;
4251
+ /**
4252
+ * <p>The fully qualified names of the attributes. For example, the fully qualified name of an attribute might be <code>Vehicle.Body.Engine.Type</code>.</p>
4253
+ * @public
4254
+ */
4255
+ attributeNames?: string[];
4256
+ /**
4257
+ * <p>Static information about a vehicle attribute value in string format. For example:</p>
4258
+ * <p>
4259
+ * <code>"1.3 L R2"</code>
4260
+ * </p>
4261
+ * @public
4262
+ */
4263
+ attributeValues?: string[];
4251
4264
  /**
4252
4265
  * <p>A pagination token for the next set of results.</p>
4253
4266
  * <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. </p>
@@ -1239,6 +1239,8 @@ export interface UntagResourceRequest {
1239
1239
  export interface UntagResourceResponse {}
1240
1240
  export interface ListVehiclesRequest {
1241
1241
  modelManifestArn?: string;
1242
+ attributeNames?: string[];
1243
+ attributeValues?: string[];
1242
1244
  nextToken?: string;
1243
1245
  maxResults?: number;
1244
1246
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iotfleetwise",
3
3
  "description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
4
- "version": "3.583.0",
4
+ "version": "3.584.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise",