Class CfnAccountAuditConfiguration.AuditNotificationTargetProperty
Information about the targets to which audit notifications are sent.
Inheritance
System.Object
CfnAccountAuditConfiguration.AuditNotificationTargetProperty
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.AWS.IoT.dll
Syntax (csharp)
public class AuditNotificationTargetProperty : Object, CfnAccountAuditConfiguration.IAuditNotificationTargetProperty
Syntax (vb)
Public Class AuditNotificationTargetProperty
Inherits Object
Implements CfnAccountAuditConfiguration.IAuditNotificationTargetProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoT;
var auditNotificationTargetProperty = new AuditNotificationTargetProperty {
Enabled = false,
RoleArn = "roleArn",
TargetArn = "targetArn"
};
Synopsis
Constructors
AuditNotificationTargetProperty() |
Properties
Enabled | True if notifications to the target are enabled. |
RoleArn | The ARN of the role that grants permission to send notifications to the target. |
TargetArn | The ARN of the target (SNS topic) to which audit notifications are sent. |
Constructors
AuditNotificationTargetProperty()
public AuditNotificationTargetProperty()
Properties
Enabled
True if notifications to the target are enabled.
public object Enabled { get; set; }
Property Value
System.Object
Remarks
RoleArn
The ARN of the role that grants permission to send notifications to the target.
public string RoleArn { get; set; }
Property Value
System.String
Remarks
TargetArn
The ARN of the target (SNS topic) to which audit notifications are sent.
public string TargetArn { get; set; }
Property Value
System.String