interface AuditNotificationTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnAccountAuditConfigurationPropsMixin_AuditNotificationTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnAccountAuditConfigurationPropsMixin » AuditNotificationTargetProperty |
Information about the targets to which audit notifications are sent.
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 auditNotificationTargetProperty: iot_mixins.CfnAccountAuditConfigurationPropsMixin.AuditNotificationTargetProperty = {
enabled: false,
roleArn: 'roleArn',
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | True if notifications to the target are enabled. |
| role | string | The ARN of the role that grants permission to send notifications to the target. |
| target | string | The ARN of the target (SNS topic) to which audit notifications are sent. |
enabled?
Type:
boolean | IResolvable
(optional)
True if notifications to the target are enabled.
roleArn?
Type:
string
(optional)
The ARN of the role that grants permission to send notifications to the target.
targetArn?
Type:
string
(optional)
The ARN of the target (SNS topic) to which audit notifications are sent.

.NET
Go
Java
Python
TypeScript