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