Module Values.ModifyEventSubscriptionMessageSource

Sourcetype nonrec t = {
  1. subscriptionName : String_.t;
    (*

    The name of the DMS event notification subscription to be modified.

    *)
  2. snsTopicArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.

    *)
  3. sourceType : String_.t option;
    (*

    The type of DMS resource that generates the events you want to subscribe to. Valid values: replication-instance | replication-task

    *)
  4. eventCategories : EventCategoriesList.t option;
    (*

    A list of event categories for a source type that you want to subscribe to. Use the DescribeEventCategories action to see a list of event categories.

    *)
  5. enabled : BooleanOptional.t option;
    (*

    A Boolean value; set to true to activate the subscription.

    *)
}
Sourceval context_ : string
Sourceval make : ?snsTopicArn:??? -> ?sourceType:??? -> ?eventCategories:??? -> ?enabled:??? -> subscriptionName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `List of [> `String of String_.t ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t