@aws-cdk/aws-iot-alpha 2.194.0-alpha.0 → 2.196.0-alpha.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/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.194.0",
11
+ "aws-cdk-lib": "^2.196.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -3516,6 +3516,19 @@
3516
3516
  }
3517
3517
  }
3518
3518
  },
3519
+ "aws-cdk-lib.aws_ssmguiconnect": {
3520
+ "targets": {
3521
+ "dotnet": {
3522
+ "package": "Amazon.CDK.AWS.SSMGuiConnect"
3523
+ },
3524
+ "java": {
3525
+ "package": "software.amazon.awscdk.services.ssmguiconnect"
3526
+ },
3527
+ "python": {
3528
+ "module": "aws_cdk.aws_ssmguiconnect"
3529
+ }
3530
+ }
3531
+ },
3519
3532
  "aws-cdk-lib.aws_ssmincidents": {
3520
3533
  "targets": {
3521
3534
  "dotnet": {
@@ -3952,7 +3965,7 @@
3952
3965
  "stability": "experimental"
3953
3966
  },
3954
3967
  "homepage": "https://github.com/aws/aws-cdk",
3955
- "jsiiVersion": "5.7.10 (build 5114b23)",
3968
+ "jsiiVersion": "5.7.15 (build 8c2933f)",
3956
3969
  "keywords": [
3957
3970
  "aws",
3958
3971
  "cdk",
@@ -3973,7 +3986,7 @@
3973
3986
  },
3974
3987
  "name": "@aws-cdk/aws-iot-alpha",
3975
3988
  "readme": {
3976
- "markdown": "# AWS IoT Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\nAWS IoT Core lets you connect billions of IoT devices and route trillions of\nmessages to AWS services without managing infrastructure.\n\n## `TopicRule`\n\nCreate a topic rule that give your devices the ability to interact with AWS services.\nYou can create a topic rule with an action that invoke the Lambda action as following:\n\n```ts\nconst func = new lambda.Function(this, 'MyFunction', {\n runtime: lambda.Runtime.NODEJS_LATEST,\n handler: 'index.handler',\n code: lambda.Code.fromInline(`\n exports.handler = (event) => {\n console.log(\"It is test for lambda action of AWS IoT Rule.\", event);\n };`\n ),\n});\n\nnew iot.TopicRule(this, 'TopicRule', {\n topicRuleName: 'MyTopicRule', // optional\n description: 'invokes the lambda function', // optional\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n actions: [new actions.LambdaFunctionAction(func)],\n});\n```\n\nOr, you can add an action after constructing the `TopicRule` instance as following:\n\n```ts\ndeclare const func: lambda.Function;\n\nconst topicRule = new iot.TopicRule(this, 'TopicRule', {\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n});\ntopicRule.addAction(new actions.LambdaFunctionAction(func));\n```\n\nYou can also supply `errorAction` as following,\nand the IoT Rule will trigger it if a rule's action is unable to perform:\n\n```ts\nimport * as logs from 'aws-cdk-lib/aws-logs';\n\nconst logGroup = new logs.LogGroup(this, 'MyLogGroup');\n\nnew iot.TopicRule(this, 'TopicRule', {\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n errorAction: new actions.CloudWatchLogsAction(logGroup),\n});\n```\n\nIf you wanna make the topic rule disable, add property `enabled: false` as following:\n\n```ts\nnew iot.TopicRule(this, 'TopicRule', {\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n enabled: false,\n});\n```\n\nSee also [@aws-cdk/aws-iot-actions-alpha](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-iot-actions-alpha-readme.html) for other actions.\n\n## Logging\n\nAWS IoT provides a [logging feature](https://docs.aws.amazon.com/iot/latest/developerguide/configure-logging.html) that allows you to monitor and log AWS IoT activity.\n\nYou can enable IoT logging with the following code:\n\n```ts\nnew iot.Logging(this, 'Logging', {\n logLevel: iot.LogLevel.INFO,\n});\n```\n\n**Note**: All logs are forwarded to the `AWSIotLogsV2` log group in CloudWatch.\n\n## Audit\n\nAn [AWS IoT Device Defender audit looks](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/device-defender-audit.html) at account- and device-related settings and policies to ensure security measures are in place.\nAn audit can help you detect any drifts from security best practices or access policies.\n\n### Account Audit Configuration\n\nThe IoT audit includes [various audit checks](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/device-defender-audit-checks.html), and it is necessary to configure settings to enable those checks.\n\nYou can enable an account audit configuration with the following code:\n\n```ts\n// Audit notification are sent to the SNS topic\ndeclare const targetTopic: sns.ITopic;\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n targetTopic,\n});\n```\n\nBy default, all audit checks are enabled, but it is also possible to enable only specific audit checks.\n\n```ts\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n // enabled\n authenticatedCognitoRoleOverlyPermissiveCheck: true,\n // enabled by default\n caCertificateExpiringCheck: undefined,\n // disabled\n caCertificateKeyQualityCheck: false,\n conflictingClientIdsCheck: false,\n deviceCertificateExpiringCheck: false,\n deviceCertificateKeyQualityCheck: false,\n deviceCertificateSharedCheck: false,\n intermediateCaRevokedForActiveDeviceCertificatesCheck: false,\n ioTPolicyPotentialMisConfigurationCheck: false,\n iotPolicyOverlyPermissiveCheck: false,\n iotRoleAliasAllowsAccessToUnusedServicesCheck: false,\n iotRoleAliasOverlyPermissiveCheck: false,\n loggingDisabledCheck: false,\n revokedCaCertificateStillActiveCheck: false,\n revokedDeviceCertificateStillActiveCheck: false,\n unauthenticatedCognitoRoleOverlyPermissiveCheck: false,\n },\n});\n```\n\n### Scheduled Audit\n\nYou can create a [scheduled audit](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/AuditCommands.html#device-defender-AuditCommandsManageSchedules) that is run at a specified time interval. Checks must be enabled for your account by creating `AccountAuditConfiguration`.\n\n```ts\ndeclare const config: iot.AccountAuditConfiguration;\n\n// Daily audit\nconst dailyAudit = new iot.ScheduledAudit(this, 'DailyAudit', {\n accountAuditConfiguration: config,\n frequency: iot.Frequency.DAILY,\n auditChecks: [\n iot.AuditCheck.AUTHENTICATED_COGNITO_ROLE_OVERLY_PERMISSIVE_CHECK,\n ],\n})\n\n// Weekly audit\nconst weeklyAudit = new iot.ScheduledAudit(this, 'WeeklyAudit', {\n accountAuditConfiguration: config,\n frequency: iot.Frequency.WEEKLY,\n dayOfWeek: iot.DayOfWeek.SUNDAY,\n auditChecks: [\n iot.AuditCheck.CA_CERTIFICATE_EXPIRING_CHECK,\n ],\n});\n\n// Monthly audit\nconst monthlyAudit = new iot.ScheduledAudit(this, 'MonthlyAudit', {\n accountAuditConfiguration: config,\n frequency: iot.Frequency.MONTHLY,\n dayOfMonth: iot.DayOfMonth.of(1),\n auditChecks: [\n iot.AuditCheck.CA_CERTIFICATE_KEY_QUALITY_CHECK,\n ],\n});\n```\n"
3989
+ "markdown": "# AWS IoT Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\nAWS IoT Core lets you connect billions of IoT devices and route trillions of\nmessages to AWS services without managing infrastructure.\n\n## `TopicRule`\n\nCreate a topic rule that give your devices the ability to interact with AWS services.\nYou can create a topic rule with an action that invoke the Lambda action as following:\n\n```ts\nconst func = new lambda.Function(this, 'MyFunction', {\n runtime: lambda.Runtime.NODEJS_LATEST,\n handler: 'index.handler',\n code: lambda.Code.fromInline(`\n exports.handler = (event) => {\n console.log(\"It is test for lambda action of AWS IoT Rule.\", event);\n };`\n ),\n});\n\nnew iot.TopicRule(this, 'TopicRule', {\n topicRuleName: 'MyTopicRule', // optional\n description: 'invokes the lambda function', // optional\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n actions: [new actions.LambdaFunctionAction(func)],\n});\n```\n\nOr, you can add an action after constructing the `TopicRule` instance as following:\n\n```ts\ndeclare const func: lambda.Function;\n\nconst topicRule = new iot.TopicRule(this, 'TopicRule', {\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n});\ntopicRule.addAction(new actions.LambdaFunctionAction(func));\n```\n\nYou can also supply `errorAction` as following,\nand the IoT Rule will trigger it if a rule's action is unable to perform:\n\n```ts\nimport * as logs from 'aws-cdk-lib/aws-logs';\n\nconst logGroup = new logs.LogGroup(this, 'MyLogGroup');\n\nnew iot.TopicRule(this, 'TopicRule', {\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n errorAction: new actions.CloudWatchLogsAction(logGroup),\n});\n```\n\nIf you wanna make the topic rule disable, add property `enabled: false` as following:\n\n```ts\nnew iot.TopicRule(this, 'TopicRule', {\n sql: iot.IotSql.fromStringAsVer20160323(\"SELECT topic(2) as device_id, timestamp() as timestamp FROM 'device/+/data'\"),\n enabled: false,\n});\n```\n\nSee also [@aws-cdk/aws-iot-actions-alpha](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-iot-actions-alpha-readme.html) for other actions.\n\n## Logging\n\nAWS IoT provides a [logging feature](https://docs.aws.amazon.com/iot/latest/developerguide/configure-logging.html) that allows you to monitor and log AWS IoT activity.\n\nYou can enable IoT logging with the following code:\n\n```ts\nnew iot.Logging(this, 'Logging', {\n logLevel: iot.LogLevel.INFO,\n});\n```\n\n**Note**: All logs are forwarded to the `AWSIotLogsV2` log group in CloudWatch.\n\n## Audit\n\nAn [AWS IoT Device Defender audit looks](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/device-defender-audit.html) at account- and device-related settings and policies to ensure security measures are in place.\nAn audit can help you detect any drifts from security best practices or access policies.\n\n### Account Audit Configuration\n\nThe IoT audit includes [various audit checks](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/device-defender-audit-checks.html), and it is necessary to configure settings to enable those checks.\n\nYou can enable an account audit configuration with the following code:\n\n```ts\n// Audit notification are sent to the SNS topic\ndeclare const targetTopic: sns.ITopic;\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n targetTopic,\n});\n```\n\nBy default, all audit checks are enabled, but it is also possible to enable only specific audit checks.\n\n```ts\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n // enabled\n authenticatedCognitoRoleOverlyPermissiveCheck: true,\n // enabled by default\n caCertificateExpiringCheck: undefined,\n // disabled\n caCertificateKeyQualityCheck: false,\n conflictingClientIdsCheck: false,\n deviceCertificateAgeCheck: false,\n deviceCertificateExpiringCheck: false,\n deviceCertificateKeyQualityCheck: false,\n deviceCertificateSharedCheck: false,\n intermediateCaRevokedForActiveDeviceCertificatesCheck: false,\n ioTPolicyPotentialMisConfigurationCheck: false,\n iotPolicyOverlyPermissiveCheck: false,\n iotRoleAliasAllowsAccessToUnusedServicesCheck: false,\n iotRoleAliasOverlyPermissiveCheck: false,\n loggingDisabledCheck: false,\n revokedCaCertificateStillActiveCheck: false,\n revokedDeviceCertificateStillActiveCheck: false,\n unauthenticatedCognitoRoleOverlyPermissiveCheck: false,\n },\n});\n```\n\nTo configure [the device certificate age check](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/device-certificate-age-check.html), you can specify the duration for the check:\n\n```ts\nimport { Duration } from 'aws-cdk-lib';\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n deviceCertificateAgeCheck: true,\n // The default value is 365 days\n // Valid values range from 30 days (minimum) to 3652 days (10 years, maximum)\n deviceCertificateAgeCheckDuration: Duration.days(365),\n },\n});\n```\n\n### Scheduled Audit\n\nYou can create a [scheduled audit](https://docs.aws.amazon.com/iot-device-defender/latest/devguide/AuditCommands.html#device-defender-AuditCommandsManageSchedules) that is run at a specified time interval. Checks must be enabled for your account by creating `AccountAuditConfiguration`.\n\n```ts\ndeclare const config: iot.AccountAuditConfiguration;\n\n// Daily audit\nconst dailyAudit = new iot.ScheduledAudit(this, 'DailyAudit', {\n accountAuditConfiguration: config,\n frequency: iot.Frequency.DAILY,\n auditChecks: [\n iot.AuditCheck.AUTHENTICATED_COGNITO_ROLE_OVERLY_PERMISSIVE_CHECK,\n ],\n})\n\n// Weekly audit\nconst weeklyAudit = new iot.ScheduledAudit(this, 'WeeklyAudit', {\n accountAuditConfiguration: config,\n frequency: iot.Frequency.WEEKLY,\n dayOfWeek: iot.DayOfWeek.SUNDAY,\n auditChecks: [\n iot.AuditCheck.CA_CERTIFICATE_EXPIRING_CHECK,\n ],\n});\n\n// Monthly audit\nconst monthlyAudit = new iot.ScheduledAudit(this, 'MonthlyAudit', {\n accountAuditConfiguration: config,\n frequency: iot.Frequency.MONTHLY,\n dayOfMonth: iot.DayOfMonth.of(1),\n auditChecks: [\n iot.AuditCheck.CA_CERTIFICATE_KEY_QUALITY_CHECK,\n ],\n});\n```\n"
3977
3990
  },
3978
3991
  "repository": {
3979
3992
  "directory": "packages/@aws-cdk/aws-iot-alpha",
@@ -4017,7 +4030,7 @@
4017
4030
  "docs": {
4018
4031
  "stability": "experimental",
4019
4032
  "summary": "Defines AWS IoT Audit Configuration.",
4020
- "example": "// Audit notification are sent to the SNS topic\ndeclare const targetTopic: sns.ITopic;\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n targetTopic,\n});",
4033
+ "example": "import { Duration } from 'aws-cdk-lib';\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n deviceCertificateAgeCheck: true,\n // The default value is 365 days\n // Valid values range from 30 days (minimum) to 3652 days (10 years, maximum)\n deviceCertificateAgeCheckDuration: Duration.days(365),\n },\n});",
4021
4034
  "custom": {
4022
4035
  "exampleMetadata": "infused"
4023
4036
  }
@@ -4029,7 +4042,7 @@
4029
4042
  },
4030
4043
  "locationInModule": {
4031
4044
  "filename": "lib/audit-configuration.ts",
4032
- "line": 199
4045
+ "line": 223
4033
4046
  },
4034
4047
  "parameters": [
4035
4048
  {
@@ -4059,7 +4072,7 @@
4059
4072
  "kind": "class",
4060
4073
  "locationInModule": {
4061
4074
  "filename": "lib/audit-configuration.ts",
4062
- "line": 178
4075
+ "line": 198
4063
4076
  },
4064
4077
  "methods": [
4065
4078
  {
@@ -4069,7 +4082,7 @@
4069
4082
  },
4070
4083
  "locationInModule": {
4071
4084
  "filename": "lib/audit-configuration.ts",
4072
- "line": 186
4085
+ "line": 210
4073
4086
  },
4074
4087
  "name": "fromAccountId",
4075
4088
  "parameters": [
@@ -4111,6 +4124,23 @@
4111
4124
  ],
4112
4125
  "name": "AccountAuditConfiguration",
4113
4126
  "properties": [
4127
+ {
4128
+ "const": true,
4129
+ "docs": {
4130
+ "stability": "experimental",
4131
+ "summary": "Uniquely identifies this class."
4132
+ },
4133
+ "immutable": true,
4134
+ "locationInModule": {
4135
+ "filename": "lib/audit-configuration.ts",
4136
+ "line": 201
4137
+ },
4138
+ "name": "PROPERTY_INJECTION_ID",
4139
+ "static": true,
4140
+ "type": {
4141
+ "primitive": "string"
4142
+ }
4143
+ },
4114
4144
  {
4115
4145
  "docs": {
4116
4146
  "custom": {
@@ -4122,7 +4152,7 @@
4122
4152
  "immutable": true,
4123
4153
  "locationInModule": {
4124
4154
  "filename": "lib/audit-configuration.ts",
4125
- "line": 197
4155
+ "line": 221
4126
4156
  },
4127
4157
  "name": "accountId",
4128
4158
  "overrides": "@aws-cdk/aws-iot-alpha.IAccountAuditConfiguration",
@@ -4139,7 +4169,7 @@
4139
4169
  "docs": {
4140
4170
  "stability": "experimental",
4141
4171
  "summary": "Properties for defining AWS IoT Audit Configuration.",
4142
- "example": "// Audit notification are sent to the SNS topic\ndeclare const targetTopic: sns.ITopic;\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n targetTopic,\n});",
4172
+ "example": "import { Duration } from 'aws-cdk-lib';\n\nnew iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n deviceCertificateAgeCheck: true,\n // The default value is 365 days\n // Valid values range from 30 days (minimum) to 3652 days (10 years, maximum)\n deviceCertificateAgeCheckDuration: Duration.days(365),\n },\n});",
4143
4173
  "custom": {
4144
4174
  "exampleMetadata": "infused"
4145
4175
  }
@@ -4148,7 +4178,7 @@
4148
4178
  "kind": "interface",
4149
4179
  "locationInModule": {
4150
4180
  "filename": "lib/audit-configuration.ts",
4151
- "line": 159
4181
+ "line": 179
4152
4182
  },
4153
4183
  "name": "AccountAuditConfigurationProps",
4154
4184
  "properties": [
@@ -4162,7 +4192,7 @@
4162
4192
  "immutable": true,
4163
4193
  "locationInModule": {
4164
4194
  "filename": "lib/audit-configuration.ts",
4165
- "line": 172
4195
+ "line": 192
4166
4196
  },
4167
4197
  "name": "checkConfiguration",
4168
4198
  "optional": true,
@@ -4180,7 +4210,7 @@
4180
4210
  "immutable": true,
4181
4211
  "locationInModule": {
4182
4212
  "filename": "lib/audit-configuration.ts",
4183
- "line": 165
4213
+ "line": 185
4184
4214
  },
4185
4215
  "name": "targetTopic",
4186
4216
  "optional": true,
@@ -4244,7 +4274,7 @@
4244
4274
  "kind": "enum",
4245
4275
  "locationInModule": {
4246
4276
  "filename": "lib/scheduled-audit.ts",
4247
- "line": 44
4277
+ "line": 45
4248
4278
  },
4249
4279
  "members": [
4250
4280
  {
@@ -4361,7 +4391,7 @@
4361
4391
  "see": "https://docs.aws.amazon.com/iot-device-defender/latest/devguide/device-defender-audit-checks.html",
4362
4392
  "stability": "experimental",
4363
4393
  "summary": "The types of audit checks.",
4364
- "example": "new iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n // enabled\n authenticatedCognitoRoleOverlyPermissiveCheck: true,\n // enabled by default\n caCertificateExpiringCheck: undefined,\n // disabled\n caCertificateKeyQualityCheck: false,\n conflictingClientIdsCheck: false,\n deviceCertificateExpiringCheck: false,\n deviceCertificateKeyQualityCheck: false,\n deviceCertificateSharedCheck: false,\n intermediateCaRevokedForActiveDeviceCertificatesCheck: false,\n ioTPolicyPotentialMisConfigurationCheck: false,\n iotPolicyOverlyPermissiveCheck: false,\n iotRoleAliasAllowsAccessToUnusedServicesCheck: false,\n iotRoleAliasOverlyPermissiveCheck: false,\n loggingDisabledCheck: false,\n revokedCaCertificateStillActiveCheck: false,\n revokedDeviceCertificateStillActiveCheck: false,\n unauthenticatedCognitoRoleOverlyPermissiveCheck: false,\n },\n});",
4394
+ "example": "new iot.AccountAuditConfiguration(this, 'AuditConfiguration', {\n checkConfiguration: {\n // enabled\n authenticatedCognitoRoleOverlyPermissiveCheck: true,\n // enabled by default\n caCertificateExpiringCheck: undefined,\n // disabled\n caCertificateKeyQualityCheck: false,\n conflictingClientIdsCheck: false,\n deviceCertificateAgeCheck: false,\n deviceCertificateExpiringCheck: false,\n deviceCertificateKeyQualityCheck: false,\n deviceCertificateSharedCheck: false,\n intermediateCaRevokedForActiveDeviceCertificatesCheck: false,\n ioTPolicyPotentialMisConfigurationCheck: false,\n iotPolicyOverlyPermissiveCheck: false,\n iotRoleAliasAllowsAccessToUnusedServicesCheck: false,\n iotRoleAliasOverlyPermissiveCheck: false,\n loggingDisabledCheck: false,\n revokedCaCertificateStillActiveCheck: false,\n revokedDeviceCertificateStillActiveCheck: false,\n unauthenticatedCognitoRoleOverlyPermissiveCheck: false,\n },\n});",
4365
4395
  "custom": {
4366
4396
  "exampleMetadata": "infused"
4367
4397
  }
@@ -4370,7 +4400,7 @@
4370
4400
  "kind": "interface",
4371
4401
  "locationInModule": {
4372
4402
  "filename": "lib/audit-configuration.ts",
4373
- "line": 24
4403
+ "line": 25
4374
4404
  },
4375
4405
  "name": "CheckConfiguration",
4376
4406
  "properties": [
@@ -4385,7 +4415,7 @@
4385
4415
  "immutable": true,
4386
4416
  "locationInModule": {
4387
4417
  "filename": "lib/audit-configuration.ts",
4388
- "line": 33
4418
+ "line": 34
4389
4419
  },
4390
4420
  "name": "authenticatedCognitoRoleOverlyPermissiveCheck",
4391
4421
  "optional": true,
@@ -4404,7 +4434,7 @@
4404
4434
  "immutable": true,
4405
4435
  "locationInModule": {
4406
4436
  "filename": "lib/audit-configuration.ts",
4407
- "line": 42
4437
+ "line": 43
4408
4438
  },
4409
4439
  "name": "caCertificateExpiringCheck",
4410
4440
  "optional": true,
@@ -4423,7 +4453,7 @@
4423
4453
  "immutable": true,
4424
4454
  "locationInModule": {
4425
4455
  "filename": "lib/audit-configuration.ts",
4426
- "line": 53
4456
+ "line": 54
4427
4457
  },
4428
4458
  "name": "caCertificateKeyQualityCheck",
4429
4459
  "optional": true,
@@ -4441,7 +4471,7 @@
4441
4471
  "immutable": true,
4442
4472
  "locationInModule": {
4443
4473
  "filename": "lib/audit-configuration.ts",
4444
- "line": 60
4474
+ "line": 61
4445
4475
  },
4446
4476
  "name": "conflictingClientIdsCheck",
4447
4477
  "optional": true,
@@ -4449,6 +4479,43 @@
4449
4479
  "primitive": "boolean"
4450
4480
  }
4451
4481
  },
4482
+ {
4483
+ "abstract": true,
4484
+ "docs": {
4485
+ "default": "true",
4486
+ "stability": "experimental",
4487
+ "summary": "Checks when a device certificate has been active for a number of days greater than or equal to the number you specify."
4488
+ },
4489
+ "immutable": true,
4490
+ "locationInModule": {
4491
+ "filename": "lib/audit-configuration.ts",
4492
+ "line": 68
4493
+ },
4494
+ "name": "deviceCertificateAgeCheck",
4495
+ "optional": true,
4496
+ "type": {
4497
+ "primitive": "boolean"
4498
+ }
4499
+ },
4500
+ {
4501
+ "abstract": true,
4502
+ "docs": {
4503
+ "default": "- 365 days",
4504
+ "remarks": "Valid values range from 30 days (minimum) to 3652 days (10 years, maximum).\n\nYou cannot specify a value for this check if `deviceCertificateAgeCheck` is set to `false`.",
4505
+ "stability": "experimental",
4506
+ "summary": "The duration used to check if a device certificate has been active for a number of days greater than or equal to the number you specify."
4507
+ },
4508
+ "immutable": true,
4509
+ "locationInModule": {
4510
+ "filename": "lib/audit-configuration.ts",
4511
+ "line": 80
4512
+ },
4513
+ "name": "deviceCertificateAgeCheckDuration",
4514
+ "optional": true,
4515
+ "type": {
4516
+ "fqn": "aws-cdk-lib.Duration"
4517
+ }
4518
+ },
4452
4519
  {
4453
4520
  "abstract": true,
4454
4521
  "docs": {
@@ -4460,7 +4527,7 @@
4460
4527
  "immutable": true,
4461
4528
  "locationInModule": {
4462
4529
  "filename": "lib/audit-configuration.ts",
4463
- "line": 69
4530
+ "line": 89
4464
4531
  },
4465
4532
  "name": "deviceCertificateExpiringCheck",
4466
4533
  "optional": true,
@@ -4479,7 +4546,7 @@
4479
4546
  "immutable": true,
4480
4547
  "locationInModule": {
4481
4548
  "filename": "lib/audit-configuration.ts",
4482
- "line": 79
4549
+ "line": 99
4483
4550
  },
4484
4551
  "name": "deviceCertificateKeyQualityCheck",
4485
4552
  "optional": true,
@@ -4497,7 +4564,7 @@
4497
4564
  "immutable": true,
4498
4565
  "locationInModule": {
4499
4566
  "filename": "lib/audit-configuration.ts",
4500
- "line": 86
4567
+ "line": 106
4501
4568
  },
4502
4569
  "name": "deviceCertificateSharedCheck",
4503
4570
  "optional": true,
@@ -4515,7 +4582,7 @@
4515
4582
  "immutable": true,
4516
4583
  "locationInModule": {
4517
4584
  "filename": "lib/audit-configuration.ts",
4518
- "line": 93
4585
+ "line": 113
4519
4586
  },
4520
4587
  "name": "intermediateCaRevokedForActiveDeviceCertificatesCheck",
4521
4588
  "optional": true,
@@ -4533,7 +4600,7 @@
4533
4600
  "immutable": true,
4534
4601
  "locationInModule": {
4535
4602
  "filename": "lib/audit-configuration.ts",
4536
- "line": 100
4603
+ "line": 120
4537
4604
  },
4538
4605
  "name": "iotPolicyOverlyPermissiveCheck",
4539
4606
  "optional": true,
@@ -4552,7 +4619,7 @@
4552
4619
  "immutable": true,
4553
4620
  "locationInModule": {
4554
4621
  "filename": "lib/audit-configuration.ts",
4555
- "line": 111
4622
+ "line": 131
4556
4623
  },
4557
4624
  "name": "ioTPolicyPotentialMisConfigurationCheck",
4558
4625
  "optional": true,
@@ -4570,7 +4637,7 @@
4570
4637
  "immutable": true,
4571
4638
  "locationInModule": {
4572
4639
  "filename": "lib/audit-configuration.ts",
4573
- "line": 118
4640
+ "line": 138
4574
4641
  },
4575
4642
  "name": "iotRoleAliasAllowsAccessToUnusedServicesCheck",
4576
4643
  "optional": true,
@@ -4588,7 +4655,7 @@
4588
4655
  "immutable": true,
4589
4656
  "locationInModule": {
4590
4657
  "filename": "lib/audit-configuration.ts",
4591
- "line": 125
4658
+ "line": 145
4592
4659
  },
4593
4660
  "name": "iotRoleAliasOverlyPermissiveCheck",
4594
4661
  "optional": true,
@@ -4606,7 +4673,7 @@
4606
4673
  "immutable": true,
4607
4674
  "locationInModule": {
4608
4675
  "filename": "lib/audit-configuration.ts",
4609
- "line": 132
4676
+ "line": 152
4610
4677
  },
4611
4678
  "name": "loggingDisabledCheck",
4612
4679
  "optional": true,
@@ -4624,7 +4691,7 @@
4624
4691
  "immutable": true,
4625
4692
  "locationInModule": {
4626
4693
  "filename": "lib/audit-configuration.ts",
4627
- "line": 139
4694
+ "line": 159
4628
4695
  },
4629
4696
  "name": "revokedCaCertificateStillActiveCheck",
4630
4697
  "optional": true,
@@ -4642,7 +4709,7 @@
4642
4709
  "immutable": true,
4643
4710
  "locationInModule": {
4644
4711
  "filename": "lib/audit-configuration.ts",
4645
- "line": 146
4712
+ "line": 166
4646
4713
  },
4647
4714
  "name": "revokedDeviceCertificateStillActiveCheck",
4648
4715
  "optional": true,
@@ -4660,7 +4727,7 @@
4660
4727
  "immutable": true,
4661
4728
  "locationInModule": {
4662
4729
  "filename": "lib/audit-configuration.ts",
4663
- "line": 153
4730
+ "line": 173
4664
4731
  },
4665
4732
  "name": "unauthenticatedCognitoRoleOverlyPermissiveCheck",
4666
4733
  "optional": true,
@@ -4685,7 +4752,7 @@
4685
4752
  "kind": "class",
4686
4753
  "locationInModule": {
4687
4754
  "filename": "lib/scheduled-audit.ts",
4688
- "line": 178
4755
+ "line": 179
4689
4756
  },
4690
4757
  "methods": [
4691
4758
  {
@@ -4695,7 +4762,7 @@
4695
4762
  },
4696
4763
  "locationInModule": {
4697
4764
  "filename": "lib/scheduled-audit.ts",
4698
- "line": 188
4765
+ "line": 189
4699
4766
  },
4700
4767
  "name": "of",
4701
4768
  "parameters": [
@@ -4728,7 +4795,7 @@
4728
4795
  "immutable": true,
4729
4796
  "locationInModule": {
4730
4797
  "filename": "lib/scheduled-audit.ts",
4731
- "line": 182
4798
+ "line": 183
4732
4799
  },
4733
4800
  "name": "LAST_DAY",
4734
4801
  "static": true,
@@ -4744,7 +4811,7 @@
4744
4811
  "immutable": true,
4745
4812
  "locationInModule": {
4746
4813
  "filename": "lib/scheduled-audit.ts",
4747
- "line": 202
4814
+ "line": 203
4748
4815
  },
4749
4816
  "name": "day",
4750
4817
  "type": {
@@ -4768,7 +4835,7 @@
4768
4835
  "kind": "enum",
4769
4836
  "locationInModule": {
4770
4837
  "filename": "lib/scheduled-audit.ts",
4771
- "line": 133
4838
+ "line": 134
4772
4839
  },
4773
4840
  "members": [
4774
4841
  {
@@ -4845,7 +4912,7 @@
4845
4912
  "kind": "enum",
4846
4913
  "locationInModule": {
4847
4914
  "filename": "lib/scheduled-audit.ts",
4848
- "line": 208
4915
+ "line": 209
4849
4916
  },
4850
4917
  "members": [
4851
4918
  {
@@ -4893,7 +4960,7 @@
4893
4960
  "kind": "interface",
4894
4961
  "locationInModule": {
4895
4962
  "filename": "lib/audit-configuration.ts",
4896
- "line": 11
4963
+ "line": 12
4897
4964
  },
4898
4965
  "name": "IAccountAuditConfiguration",
4899
4966
  "properties": [
@@ -4909,7 +4976,7 @@
4909
4976
  "immutable": true,
4910
4977
  "locationInModule": {
4911
4978
  "filename": "lib/audit-configuration.ts",
4912
- "line": 16
4979
+ "line": 17
4913
4980
  },
4914
4981
  "name": "accountId",
4915
4982
  "type": {
@@ -4947,7 +5014,7 @@
4947
5014
  "kind": "interface",
4948
5015
  "locationInModule": {
4949
5016
  "filename": "lib/logging.ts",
4950
- "line": 10
5017
+ "line": 11
4951
5018
  },
4952
5019
  "name": "ILogging",
4953
5020
  "properties": [
@@ -4963,7 +5030,7 @@
4963
5030
  "immutable": true,
4964
5031
  "locationInModule": {
4965
5032
  "filename": "lib/logging.ts",
4966
- "line": 15
5033
+ "line": 16
4967
5034
  },
4968
5035
  "name": "logId",
4969
5036
  "type": {
@@ -4986,7 +5053,7 @@
4986
5053
  "kind": "interface",
4987
5054
  "locationInModule": {
4988
5055
  "filename": "lib/scheduled-audit.ts",
4989
- "line": 10
5056
+ "line": 11
4990
5057
  },
4991
5058
  "name": "IScheduledAudit",
4992
5059
  "properties": [
@@ -5002,7 +5069,7 @@
5002
5069
  "immutable": true,
5003
5070
  "locationInModule": {
5004
5071
  "filename": "lib/scheduled-audit.ts",
5005
- "line": 21
5072
+ "line": 22
5006
5073
  },
5007
5074
  "name": "scheduledAuditArn",
5008
5075
  "type": {
@@ -5021,7 +5088,7 @@
5021
5088
  "immutable": true,
5022
5089
  "locationInModule": {
5023
5090
  "filename": "lib/scheduled-audit.ts",
5024
- "line": 15
5091
+ "line": 16
5025
5092
  },
5026
5093
  "name": "scheduledAuditName",
5027
5094
  "type": {
@@ -5044,7 +5111,7 @@
5044
5111
  "kind": "interface",
5045
5112
  "locationInModule": {
5046
5113
  "filename": "lib/topic-rule.ts",
5047
- "line": 11
5114
+ "line": 12
5048
5115
  },
5049
5116
  "name": "ITopicRule",
5050
5117
  "properties": [
@@ -5060,7 +5127,7 @@
5060
5127
  "immutable": true,
5061
5128
  "locationInModule": {
5062
5129
  "filename": "lib/topic-rule.ts",
5063
- "line": 18
5130
+ "line": 19
5064
5131
  },
5065
5132
  "name": "topicRuleArn",
5066
5133
  "type": {
@@ -5079,7 +5146,7 @@
5079
5146
  "immutable": true,
5080
5147
  "locationInModule": {
5081
5148
  "filename": "lib/topic-rule.ts",
5082
- "line": 25
5149
+ "line": 26
5083
5150
  },
5084
5151
  "name": "topicRuleName",
5085
5152
  "type": {
@@ -5297,7 +5364,7 @@
5297
5364
  "kind": "enum",
5298
5365
  "locationInModule": {
5299
5366
  "filename": "lib/logging.ts",
5300
- "line": 21
5367
+ "line": 22
5301
5368
  },
5302
5369
  "members": [
5303
5370
  {
@@ -5361,7 +5428,7 @@
5361
5428
  },
5362
5429
  "locationInModule": {
5363
5430
  "filename": "lib/logging.ts",
5364
- "line": 92
5431
+ "line": 97
5365
5432
  },
5366
5433
  "parameters": [
5367
5434
  {
@@ -5391,7 +5458,7 @@
5391
5458
  "kind": "class",
5392
5459
  "locationInModule": {
5393
5460
  "filename": "lib/logging.ts",
5394
- "line": 71
5461
+ "line": 72
5395
5462
  },
5396
5463
  "methods": [
5397
5464
  {
@@ -5401,7 +5468,7 @@
5401
5468
  },
5402
5469
  "locationInModule": {
5403
5470
  "filename": "lib/logging.ts",
5404
- "line": 79
5471
+ "line": 84
5405
5472
  },
5406
5473
  "name": "fromLogId",
5407
5474
  "parameters": [
@@ -5443,6 +5510,23 @@
5443
5510
  ],
5444
5511
  "name": "Logging",
5445
5512
  "properties": [
5513
+ {
5514
+ "const": true,
5515
+ "docs": {
5516
+ "stability": "experimental",
5517
+ "summary": "Uniquely identifies this class."
5518
+ },
5519
+ "immutable": true,
5520
+ "locationInModule": {
5521
+ "filename": "lib/logging.ts",
5522
+ "line": 75
5523
+ },
5524
+ "name": "PROPERTY_INJECTION_ID",
5525
+ "static": true,
5526
+ "type": {
5527
+ "primitive": "string"
5528
+ }
5529
+ },
5446
5530
  {
5447
5531
  "docs": {
5448
5532
  "custom": {
@@ -5454,7 +5538,7 @@
5454
5538
  "immutable": true,
5455
5539
  "locationInModule": {
5456
5540
  "filename": "lib/logging.ts",
5457
- "line": 90
5541
+ "line": 95
5458
5542
  },
5459
5543
  "name": "logId",
5460
5544
  "overrides": "@aws-cdk/aws-iot-alpha.ILogging",
@@ -5480,7 +5564,7 @@
5480
5564
  "kind": "interface",
5481
5565
  "locationInModule": {
5482
5566
  "filename": "lib/logging.ts",
5483
- "line": 59
5567
+ "line": 60
5484
5568
  },
5485
5569
  "name": "LoggingProps",
5486
5570
  "properties": [
@@ -5494,7 +5578,7 @@
5494
5578
  "immutable": true,
5495
5579
  "locationInModule": {
5496
5580
  "filename": "lib/logging.ts",
5497
- "line": 65
5581
+ "line": 66
5498
5582
  },
5499
5583
  "name": "logLevel",
5500
5584
  "optional": true,
@@ -5523,7 +5607,7 @@
5523
5607
  },
5524
5608
  "locationInModule": {
5525
5609
  "filename": "lib/scheduled-audit.ts",
5526
- "line": 324
5610
+ "line": 329
5527
5611
  },
5528
5612
  "parameters": [
5529
5613
  {
@@ -5552,7 +5636,7 @@
5552
5636
  "kind": "class",
5553
5637
  "locationInModule": {
5554
5638
  "filename": "lib/scheduled-audit.ts",
5555
- "line": 280
5639
+ "line": 281
5556
5640
  },
5557
5641
  "methods": [
5558
5642
  {
@@ -5562,7 +5646,7 @@
5562
5646
  },
5563
5647
  "locationInModule": {
5564
5648
  "filename": "lib/scheduled-audit.ts",
5565
- "line": 288
5649
+ "line": 293
5566
5650
  },
5567
5651
  "name": "fromScheduledAuditArn",
5568
5652
  "parameters": [
@@ -5608,7 +5692,7 @@
5608
5692
  },
5609
5693
  "locationInModule": {
5610
5694
  "filename": "lib/scheduled-audit.ts",
5611
- "line": 304
5695
+ "line": 309
5612
5696
  },
5613
5697
  "name": "fromScheduledAuditAttributes",
5614
5698
  "parameters": [
@@ -5650,6 +5734,23 @@
5650
5734
  ],
5651
5735
  "name": "ScheduledAudit",
5652
5736
  "properties": [
5737
+ {
5738
+ "const": true,
5739
+ "docs": {
5740
+ "stability": "experimental",
5741
+ "summary": "Uniquely identifies this class."
5742
+ },
5743
+ "immutable": true,
5744
+ "locationInModule": {
5745
+ "filename": "lib/scheduled-audit.ts",
5746
+ "line": 284
5747
+ },
5748
+ "name": "PROPERTY_INJECTION_ID",
5749
+ "static": true,
5750
+ "type": {
5751
+ "primitive": "string"
5752
+ }
5753
+ },
5653
5754
  {
5654
5755
  "docs": {
5655
5756
  "custom": {
@@ -5661,7 +5762,7 @@
5661
5762
  "immutable": true,
5662
5763
  "locationInModule": {
5663
5764
  "filename": "lib/scheduled-audit.ts",
5664
- "line": 322
5765
+ "line": 327
5665
5766
  },
5666
5767
  "name": "scheduledAuditArn",
5667
5768
  "overrides": "@aws-cdk/aws-iot-alpha.IScheduledAudit",
@@ -5680,7 +5781,7 @@
5680
5781
  "immutable": true,
5681
5782
  "locationInModule": {
5682
5783
  "filename": "lib/scheduled-audit.ts",
5683
- "line": 316
5784
+ "line": 321
5684
5785
  },
5685
5786
  "name": "scheduledAuditName",
5686
5787
  "overrides": "@aws-cdk/aws-iot-alpha.IScheduledAudit",
@@ -5706,7 +5807,7 @@
5706
5807
  "kind": "interface",
5707
5808
  "locationInModule": {
5708
5809
  "filename": "lib/scheduled-audit.ts",
5709
- "line": 27
5810
+ "line": 28
5710
5811
  },
5711
5812
  "name": "ScheduledAuditAttributes",
5712
5813
  "properties": [
@@ -5719,7 +5820,7 @@
5719
5820
  "immutable": true,
5720
5821
  "locationInModule": {
5721
5822
  "filename": "lib/scheduled-audit.ts",
5722
- "line": 36
5823
+ "line": 37
5723
5824
  },
5724
5825
  "name": "scheduledAuditArn",
5725
5826
  "type": {
@@ -5735,7 +5836,7 @@
5735
5836
  "immutable": true,
5736
5837
  "locationInModule": {
5737
5838
  "filename": "lib/scheduled-audit.ts",
5738
- "line": 31
5839
+ "line": 32
5739
5840
  },
5740
5841
  "name": "scheduledAuditName",
5741
5842
  "type": {
@@ -5760,7 +5861,7 @@
5760
5861
  "kind": "interface",
5761
5862
  "locationInModule": {
5762
5863
  "filename": "lib/scheduled-audit.ts",
5763
- "line": 233
5864
+ "line": 234
5764
5865
  },
5765
5866
  "name": "ScheduledAuditProps",
5766
5867
  "properties": [
@@ -5774,7 +5875,7 @@
5774
5875
  "immutable": true,
5775
5876
  "locationInModule": {
5776
5877
  "filename": "lib/scheduled-audit.ts",
5777
- "line": 246
5878
+ "line": 247
5778
5879
  },
5779
5880
  "name": "accountAuditConfiguration",
5780
5881
  "type": {
@@ -5791,7 +5892,7 @@
5791
5892
  "immutable": true,
5792
5893
  "locationInModule": {
5793
5894
  "filename": "lib/scheduled-audit.ts",
5794
- "line": 239
5895
+ "line": 240
5795
5896
  },
5796
5897
  "name": "auditChecks",
5797
5898
  "type": {
@@ -5812,7 +5913,7 @@
5812
5913
  "immutable": true,
5813
5914
  "locationInModule": {
5814
5915
  "filename": "lib/scheduled-audit.ts",
5815
- "line": 267
5916
+ "line": 268
5816
5917
  },
5817
5918
  "name": "frequency",
5818
5919
  "type": {
@@ -5830,7 +5931,7 @@
5830
5931
  "immutable": true,
5831
5932
  "locationInModule": {
5832
5933
  "filename": "lib/scheduled-audit.ts",
5833
- "line": 262
5934
+ "line": 263
5834
5935
  },
5835
5936
  "name": "dayOfMonth",
5836
5937
  "optional": true,
@@ -5848,7 +5949,7 @@
5848
5949
  "immutable": true,
5849
5950
  "locationInModule": {
5850
5951
  "filename": "lib/scheduled-audit.ts",
5851
- "line": 253
5952
+ "line": 254
5852
5953
  },
5853
5954
  "name": "dayOfWeek",
5854
5955
  "optional": true,
@@ -5866,7 +5967,7 @@
5866
5967
  "immutable": true,
5867
5968
  "locationInModule": {
5868
5969
  "filename": "lib/scheduled-audit.ts",
5869
- "line": 274
5970
+ "line": 275
5870
5971
  },
5871
5972
  "name": "scheduledAuditName",
5872
5973
  "optional": true,
@@ -5895,7 +5996,7 @@
5895
5996
  },
5896
5997
  "locationInModule": {
5897
5998
  "filename": "lib/topic-rule.ts",
5898
- "line": 115
5999
+ "line": 120
5899
6000
  },
5900
6001
  "parameters": [
5901
6002
  {
@@ -5924,7 +6025,7 @@
5924
6025
  "kind": "class",
5925
6026
  "locationInModule": {
5926
6027
  "filename": "lib/topic-rule.ts",
5927
- "line": 77
6028
+ "line": 78
5928
6029
  },
5929
6030
  "methods": [
5930
6031
  {
@@ -5934,7 +6035,7 @@
5934
6035
  },
5935
6036
  "locationInModule": {
5936
6037
  "filename": "lib/topic-rule.ts",
5937
- "line": 85
6038
+ "line": 90
5938
6039
  },
5939
6040
  "name": "fromTopicRuleArn",
5940
6041
  "parameters": [
@@ -5980,7 +6081,7 @@
5980
6081
  },
5981
6082
  "locationInModule": {
5982
6083
  "filename": "lib/topic-rule.ts",
5983
- "line": 153
6084
+ "line": 158
5984
6085
  },
5985
6086
  "name": "addAction",
5986
6087
  "parameters": [
@@ -5998,6 +6099,23 @@
5998
6099
  ],
5999
6100
  "name": "TopicRule",
6000
6101
  "properties": [
6102
+ {
6103
+ "const": true,
6104
+ "docs": {
6105
+ "stability": "experimental",
6106
+ "summary": "Uniquely identifies this class."
6107
+ },
6108
+ "immutable": true,
6109
+ "locationInModule": {
6110
+ "filename": "lib/topic-rule.ts",
6111
+ "line": 81
6112
+ },
6113
+ "name": "PROPERTY_INJECTION_ID",
6114
+ "static": true,
6115
+ "type": {
6116
+ "primitive": "string"
6117
+ }
6118
+ },
6001
6119
  {
6002
6120
  "docs": {
6003
6121
  "custom": {
@@ -6009,7 +6127,7 @@
6009
6127
  "immutable": true,
6010
6128
  "locationInModule": {
6011
6129
  "filename": "lib/topic-rule.ts",
6012
- "line": 105
6130
+ "line": 110
6013
6131
  },
6014
6132
  "name": "topicRuleArn",
6015
6133
  "overrides": "@aws-cdk/aws-iot-alpha.ITopicRule",
@@ -6028,7 +6146,7 @@
6028
6146
  "immutable": true,
6029
6147
  "locationInModule": {
6030
6148
  "filename": "lib/topic-rule.ts",
6031
- "line": 111
6149
+ "line": 116
6032
6150
  },
6033
6151
  "name": "topicRuleName",
6034
6152
  "overrides": "@aws-cdk/aws-iot-alpha.ITopicRule",
@@ -6054,7 +6172,7 @@
6054
6172
  "kind": "interface",
6055
6173
  "locationInModule": {
6056
6174
  "filename": "lib/topic-rule.ts",
6057
- "line": 31
6175
+ "line": 32
6058
6176
  },
6059
6177
  "name": "TopicRuleProps",
6060
6178
  "properties": [
@@ -6068,7 +6186,7 @@
6068
6186
  "immutable": true,
6069
6187
  "locationInModule": {
6070
6188
  "filename": "lib/topic-rule.ts",
6071
- "line": 71
6189
+ "line": 72
6072
6190
  },
6073
6191
  "name": "sql",
6074
6192
  "type": {
@@ -6085,7 +6203,7 @@
6085
6203
  "immutable": true,
6086
6204
  "locationInModule": {
6087
6205
  "filename": "lib/topic-rule.ts",
6088
- "line": 43
6206
+ "line": 44
6089
6207
  },
6090
6208
  "name": "actions",
6091
6209
  "optional": true,
@@ -6108,7 +6226,7 @@
6108
6226
  "immutable": true,
6109
6227
  "locationInModule": {
6110
6228
  "filename": "lib/topic-rule.ts",
6111
- "line": 50
6229
+ "line": 51
6112
6230
  },
6113
6231
  "name": "description",
6114
6232
  "optional": true,
@@ -6126,7 +6244,7 @@
6126
6244
  "immutable": true,
6127
6245
  "locationInModule": {
6128
6246
  "filename": "lib/topic-rule.ts",
6129
- "line": 64
6247
+ "line": 65
6130
6248
  },
6131
6249
  "name": "enabled",
6132
6250
  "optional": true,
@@ -6144,7 +6262,7 @@
6144
6262
  "immutable": true,
6145
6263
  "locationInModule": {
6146
6264
  "filename": "lib/topic-rule.ts",
6147
- "line": 57
6265
+ "line": 58
6148
6266
  },
6149
6267
  "name": "errorAction",
6150
6268
  "optional": true,
@@ -6162,7 +6280,7 @@
6162
6280
  "immutable": true,
6163
6281
  "locationInModule": {
6164
6282
  "filename": "lib/topic-rule.ts",
6165
- "line": 36
6283
+ "line": 37
6166
6284
  },
6167
6285
  "name": "topicRuleName",
6168
6286
  "optional": true,
@@ -6174,6 +6292,6 @@
6174
6292
  "symbolId": "lib/topic-rule:TopicRuleProps"
6175
6293
  }
6176
6294
  },
6177
- "version": "2.194.0-alpha.0",
6295
+ "version": "2.196.0-alpha.0",
6178
6296
  "fingerprint": "**********"
6179
6297
  }