interface AuditNotificationTargetConfigurationsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnAccountAuditConfigurationPropsMixin_AuditNotificationTargetConfigurationsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnAccountAuditConfigurationPropsMixin » AuditNotificationTargetConfigurationsProperty |
The configuration of the audit notification target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const auditNotificationTargetConfigurationsProperty: iot_mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty = {
sns: {
enabled: false,
roleArn: 'roleArn',
targetArn: 'targetArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| sns? | IResolvable | Audit | The Sns notification target. |
sns?
Type:
IResolvable | Audit
(optional)
The Sns notification target.

.NET
Go
Java
Python
TypeScript