Learn R Programming

paws.database (version 0.1.12)

rds_delete_event_subscription: Deletes an RDS event notification subscription

Description

Deletes an RDS event notification subscription.

Usage

rds_delete_event_subscription(SubscriptionName)

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"
  )
)

Arguments

SubscriptionName

[required] The name of the RDS event notification subscription you want to delete.

Request syntax

svc$delete_event_subscription(
  SubscriptionName = "string"
)