Interface VaultNotificationConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VaultNotificationConfig.Builder,VaultNotificationConfig>,SdkBuilder<VaultNotificationConfig.Builder,VaultNotificationConfig>,SdkPojo
- Enclosing class:
- VaultNotificationConfig
public static interface VaultNotificationConfig.Builder extends SdkPojo, CopyableBuilder<VaultNotificationConfig.Builder,VaultNotificationConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VaultNotificationConfig.Builderevents(String... events)A list of one or more events for which Amazon S3 Glacier will send a notification to the specified Amazon SNS topic.VaultNotificationConfig.Builderevents(Collection<String> events)A list of one or more events for which Amazon S3 Glacier will send a notification to the specified Amazon SNS topic.VaultNotificationConfig.BuildersnsTopic(String snsTopic)The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).-
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
-
snsTopic
VaultNotificationConfig.Builder snsTopic(String snsTopic)
The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).
- Parameters:
snsTopic- The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
events
VaultNotificationConfig.Builder events(Collection<String> events)
A list of one or more events for which Amazon S3 Glacier will send a notification to the specified Amazon SNS topic.
- Parameters:
events- A list of one or more events for which Amazon S3 Glacier will send a notification to the specified Amazon SNS topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
events
VaultNotificationConfig.Builder events(String... events)
A list of one or more events for which Amazon S3 Glacier will send a notification to the specified Amazon SNS topic.
- Parameters:
events- A list of one or more events for which Amazon S3 Glacier will send a notification to the specified Amazon SNS topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-