Skip to main content

source_identifier_from_subscriptions

Creates, updates, deletes, gets or lists a source_identifier_from_subscriptions resource.

Overview

Namesource_identifier_from_subscriptions
TypeResource
Idaws.neptune.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:

NameAccessible byRequired ParamsOptional ParamsDescription
remove_source_identifier_from_subscriptionupdateSubscriptionName, SourceIdentifier, regionRemoves a source identifier from an existing 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.

NameDatatypeDescription
SourceIdentifierstringThe 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.
SubscriptionNamestringThe name of the event notification subscription you want to remove a source identifier from.
regionstringAWS region (default: us-east-1)

UPDATE examples

Removes a source identifier from an existing event notification subscription.

UPDATE aws.neptune.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;