CopyableBuilder<ModifyEventSubscriptionRequest.Builder,ModifyEventSubscriptionRequest>
, SdkBuilder<ModifyEventSubscriptionRequest.Builder,ModifyEventSubscriptionRequest>
public static interface ModifyEventSubscriptionRequest.Builder extends CopyableBuilder<ModifyEventSubscriptionRequest.Builder,ModifyEventSubscriptionRequest>
Modifier and Type | Method | Description |
---|---|---|
ModifyEventSubscriptionRequest.Builder |
enabled(Boolean enabled) |
A Boolean value; set to true to activate the subscription.
|
ModifyEventSubscriptionRequest.Builder |
eventCategories(String... eventCategories) |
A list of event categories for a SourceType that you want to subscribe to.
|
ModifyEventSubscriptionRequest.Builder |
eventCategories(Collection<String> eventCategories) |
A list of event categories for a SourceType that you want to subscribe to.
|
ModifyEventSubscriptionRequest.Builder |
snsTopicArn(String snsTopicArn) |
The Amazon Resource Name (ARN) of the SNS topic created for event notification.
|
ModifyEventSubscriptionRequest.Builder |
sourceType(String sourceType) |
The type of source that will be generating the events.
|
ModifyEventSubscriptionRequest.Builder |
subscriptionName(String subscriptionName) |
The name of the RDS event notification subscription.
|
copy
apply, build
ModifyEventSubscriptionRequest.Builder subscriptionName(String subscriptionName)
The name of the RDS event notification subscription.
subscriptionName
- The name of the RDS event notification subscription.ModifyEventSubscriptionRequest.Builder snsTopicArn(String snsTopicArn)
The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
snsTopicArn
- The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by
Amazon SNS when you create a topic and subscribe to it.ModifyEventSubscriptionRequest.Builder sourceType(String sourceType)
The type of source that will be generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned.
Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot
sourceType
- The type of source that will be generating the events. For example, if you want to be notified of
events generated by a DB instance, you would set this parameter to db-instance. if this value is not
specified, all events are returned.
Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot
ModifyEventSubscriptionRequest.Builder eventCategories(Collection<String> eventCategories)
A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the Events topic in the Amazon RDS User Guide or by using the DescribeEventCategories action.
eventCategories
- A list of event categories for a SourceType that you want to subscribe to. You can see a list of the
categories for a given SourceType in the Events topic in the
Amazon RDS User Guide or by using the DescribeEventCategories action.ModifyEventSubscriptionRequest.Builder eventCategories(String... eventCategories)
A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the Events topic in the Amazon RDS User Guide or by using the DescribeEventCategories action.
NOTE: This method appends the values to the existing list (if any). Use
#setEventCategories(java.util.Collection)
or #withEventCategories(java.util.Collection)
if
you want to override the existing values.
eventCategories
- A list of event categories for a SourceType that you want to subscribe to. You can see a list of the
categories for a given SourceType in the Events topic in the
Amazon RDS User Guide or by using the DescribeEventCategories action.ModifyEventSubscriptionRequest.Builder enabled(Boolean enabled)
A Boolean value; set to true to activate the subscription.
enabled
- A Boolean value; set to true to activate the subscription.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.