Amazon.RDS.AmazonRDSClient.CreateEventSubscription C# (CSharp) 메소드

CreateEventSubscription() 공개 메소드

Creates an RDS event notification subscription. This action requires a topic ARN (Amazon Resource Name) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console.

You can specify the type of source (SourceType) you want to be notified of, provide a list of RDS sources (SourceIds) that triggers the events, and provide a list of event categories (EventCategories) for events you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup.

If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIdentifier = myDBInstance1, you will be notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify a SourceIdentifier, you will receive notice of the events for that source type for all your RDS sources. If you do not specify either the SourceType nor the SourceIdentifier, you will be notified of events generated from all RDS sources belonging to your customer account.

/// You have reached the maximum number of event subscriptions. /// /// SNS has responded that there is a problem with the SND topic specified. /// /// You do not have permission to publish to the SNS topic ARN. /// /// The SNS topic ARN does not exist. /// /// The requested source could not be found. /// /// The supplied subscription name already exists. /// /// The supplied category does not exist. ///
public CreateEventSubscription ( CreateEventSubscriptionRequest request ) : CreateEventSubscriptionResponse
request Amazon.RDS.Model.CreateEventSubscriptionRequest Container for the necessary parameters to execute the CreateEventSubscription service method.
리턴 Amazon.RDS.Model.CreateEventSubscriptionResponse
        public CreateEventSubscriptionResponse CreateEventSubscription(CreateEventSubscriptionRequest request)
        {
            var marshaller = new CreateEventSubscriptionRequestMarshaller();
            var unmarshaller = CreateEventSubscriptionResponseUnmarshaller.Instance;

            return Invoke<CreateEventSubscriptionRequest,CreateEventSubscriptionResponse>(request, marshaller, unmarshaller);
        }
AmazonRDSClient