Interface AuditNotificationTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuditNotificationTarget.Builder,AuditNotificationTarget>,SdkBuilder<AuditNotificationTarget.Builder,AuditNotificationTarget>,SdkPojo
- Enclosing class:
- AuditNotificationTarget
public static interface AuditNotificationTarget.Builder extends SdkPojo, CopyableBuilder<AuditNotificationTarget.Builder,AuditNotificationTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuditNotificationTarget.Builderenabled(Boolean enabled)True if notifications to the target are enabled.AuditNotificationTarget.BuilderroleArn(String roleArn)The ARN of the role that grants permission to send notifications to the target.AuditNotificationTarget.BuildertargetArn(String targetArn)The ARN of the target (SNS topic) to which audit notifications are sent.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
targetArn
AuditNotificationTarget.Builder targetArn(String targetArn)
The ARN of the target (SNS topic) to which audit notifications are sent.
- Parameters:
targetArn- The ARN of the target (SNS topic) to which audit notifications are sent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roleArn
AuditNotificationTarget.Builder roleArn(String roleArn)
The ARN of the role that grants permission to send notifications to the target.
- Parameters:
roleArn- The ARN of the role that grants permission to send notifications to the target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enabled
AuditNotificationTarget.Builder enabled(Boolean enabled)
True if notifications to the target are enabled.
- Parameters:
enabled- True if notifications to the target are enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-