Skip to content

Commit c3c67bc

Browse files
author
AWS
committed
AWS IoT Update: AWS IoT - AWS IoT Device Defender adds support for a new Device Defender Audit Check that monitors device certificate age and custom threshold configurations for both the new device certificate age check and existing device certificate expiry check.
1 parent 30c0101 commit c3c67bc

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
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",
4+
"contributor": "",
5+
"description": "AWS IoT - AWS IoT Device Defender adds support for a new Device Defender Audit Check that monitors device certificate age and custom threshold configurations for both the new device certificate age check and existing device certificate expiry check."
6+
}

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5364,6 +5364,10 @@
53645364
"enabled":{
53655365
"shape":"Enabled",
53665366
"documentation":"<p>True if this audit check is enabled for this account.</p>"
5367+
},
5368+
"configuration":{
5369+
"shape":"CheckCustomConfiguration",
5370+
"documentation":"<p>A structure containing the configName and corresponding configValue for configuring audit checks.</p>"
53675371
}
53685372
},
53695373
"documentation":"<p>Which audit checks are enabled and disabled for this account.</p>"
@@ -6741,6 +6745,11 @@
67416745
},
67426746
"ChannelName":{"type":"string"},
67436747
"CheckCompliant":{"type":"boolean"},
6748+
"CheckCustomConfiguration":{
6749+
"type":"map",
6750+
"key":{"shape":"ConfigName"},
6751+
"value":{"shape":"ConfigValue"}
6752+
},
67446753
"Cidr":{
67456754
"type":"string",
67466755
"max":43,
@@ -7199,6 +7208,18 @@
71997208
"HIGH"
72007209
]
72017210
},
7211+
"ConfigName":{
7212+
"type":"string",
7213+
"enum":[
7214+
"CERT_AGE_THRESHOLD_IN_DAYS",
7215+
"CERT_EXPIRATION_THRESHOLD_IN_DAYS"
7216+
]
7217+
},
7218+
"ConfigValue":{
7219+
"type":"string",
7220+
"max":64,
7221+
"min":1
7222+
},
72027223
"Configuration":{
72037224
"type":"structure",
72047225
"members":{

0 commit comments

Comments
 (0)