Remove Source Identifier From Subscription
rds_remove_source_identifier_from_subscription | R Documentation |
Removes a source identifier from an existing RDS event notification subscription¶
Description¶
Removes a source identifier from an existing RDS event notification subscription.
Usage¶
rds_remove_source_identifier_from_subscription(SubscriptionName,
SourceIdentifier)
Arguments¶
SubscriptionName |
[required] The name of the RDS event notification subscription you want to remove a source identifier from. |
SourceIdentifier |
[required] The source identifier to be removed from the subscription, such as the DB instance identifier for a DB instance or the name of a security group. |
Value¶
A list with the following syntax:
list(
EventSubscription = list(
CustomerAwsId = "string",
CustSubscriptionId = "string",
SnsTopicArn = "string",
Status = "string",
SubscriptionCreationTime = "string",
SourceType = "string",
SourceIdsList = list(
"string"
),
EventCategoriesList = list(
"string"
),
Enabled = TRUE|FALSE,
EventSubscriptionArn = "string"
)
)
Request syntax¶
svc$remove_source_identifier_from_subscription(
SubscriptionName = "string",
SourceIdentifier = "string"
)
Examples¶
## Not run:
# This example removes the specified source identifier from the specified
# DB event subscription.
svc$remove_source_identifier_from_subscription(
SourceIdentifier = "mymysqlinstance",
SubscriptionName = "myeventsubscription"
)
## End(Not run)