interface AuditNotificationTargetConfigurationsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnAccountAuditConfigurationPropsMixin_AuditNotificationTargetConfigurationsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetConfigurationsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const auditNotificationTargetConfigurationsProperty: iot.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