Interface CfnAccountAuditConfiguration.AuditNotificationTargetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccountAuditConfiguration.AuditNotificationTargetProperty.Jsii$Proxy
- Enclosing class:
CfnAccountAuditConfiguration
@Stability(Stable)
public static interface CfnAccountAuditConfiguration.AuditNotificationTargetProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iot.*; AuditNotificationTargetProperty auditNotificationTargetProperty = AuditNotificationTargetProperty.builder() .enabled(false) .roleArn("roleArn") .targetArn("targetArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAccountAuditConfiguration.AuditNotificationTargetProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
True if notifications to the target are enabled.- See Also:
-
getRoleArn
The ARN of the role that grants permission to send notifications to the target.- See Also:
-
getTargetArn
The ARN of the target (SNS topic) to which audit notifications are sent.- See Also:
-
builder
@Stability(Stable) static CfnAccountAuditConfiguration.AuditNotificationTargetProperty.Builder builder()
-