Skip to content

Commit 102b035

Browse files
author
AWS
committed
AWS IoT FleetWise Update: AWS IoT FleetWise now supports listing vehicles with attributes filter, ListVehicles API is updated to support additional attributes filter.
1 parent b5e6523 commit 102b035

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS IoT FleetWise",
4+
"contributor": "",
5+
"description": "AWS IoT FleetWise now supports listing vehicles with attributes filter, ListVehicles API is updated to support additional attributes filter."
6+
}

services/iotfleetwise/src/main/resources/codegen-resources/service-2.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@
14191419
},
14201420
"signalCatalogArn":{
14211421
"shape":"arn",
1422-
"documentation":"<p>(Optional) The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign. </p>"
1422+
"documentation":"<p>The Amazon Resource Name (ARN) of the signal catalog to associate with the campaign. </p>"
14231423
},
14241424
"targetArn":{
14251425
"shape":"arn",
@@ -3251,6 +3251,14 @@
32513251
"shape":"arn",
32523252
"documentation":"<p> The Amazon Resource Name (ARN) of a vehicle model (model manifest). You can use this optional parameter to list only the vehicles created from a certain vehicle model. </p>"
32533253
},
3254+
"attributeNames":{
3255+
"shape":"attributeNamesList",
3256+
"documentation":"<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>"
3257+
},
3258+
"attributeValues":{
3259+
"shape":"attributeValuesList",
3260+
"documentation":"<p>Static information about a vehicle attribute value in string format. For example:</p> <p> <code>\"1.3 L R2\"</code> </p>"
3261+
},
32543262
"nextToken":{
32553263
"shape":"nextToken",
32563264
"documentation":"<p>A pagination token for the next set of results.</p> <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>"
@@ -4884,7 +4892,19 @@
48844892
"min":1,
48854893
"pattern":"[a-zA-Z0-9_.-]+"
48864894
},
4895+
"attributeNamesList":{
4896+
"type":"list",
4897+
"member":{"shape":"attributeName"},
4898+
"max":5,
4899+
"min":1
4900+
},
48874901
"attributeValue":{"type":"string"},
4902+
"attributeValuesList":{
4903+
"type":"list",
4904+
"member":{"shape":"attributeValue"},
4905+
"max":5,
4906+
"min":1
4907+
},
48884908
"attributesMap":{
48894909
"type":"map",
48904910
"key":{"shape":"attributeName"},

0 commit comments

Comments
 (0)