source_identifier_from_subscriptions
Creates, updates, deletes, gets or lists a source_identifier_from_subscriptions resource.
Overview
| Name | source_identifier_from_subscriptions |
| Type | Resource |
| Id | aws.rds.source_identifier_from_subscriptions |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
remove_source_identifier_from_subscription | update | SubscriptionName, SourceIdentifier, region | Removes a source identifier from an existing RDS event notification subscription. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
SourceIdentifier | string | 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. |
SubscriptionName | string | The name of the RDS event notification subscription you want to remove a source identifier from. |
region | string | AWS region (default: us-east-1) |
UPDATE examples
- remove_source_identifier_from_subscription
Removes a source identifier from an existing RDS event notification subscription.
UPDATE aws.rds.source_identifier_from_subscriptions
SET
-- No updatable properties
WHERE
SubscriptionName = '{{ SubscriptionName }}' --required
AND SourceIdentifier = '{{ SourceIdentifier }}' --required
AND region = '{{ region }}' --required
RETURNING
cust_subscription_id,
customer_aws_id,
enabled,
event_categories_list,
event_subscription_arn,
sns_topic_arn,
source_ids_list,
source_type,
status,
subscription_creation_time;