Module Values.EventSubscriptionSource

Describes an event notification subscription created by the CreateEventSubscription operation.

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

    The Amazon Web Services customer account associated with the DMS event notification subscription.

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

    The DMS event notification subscription Id.

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

    The topic ARN of the DMS event notification subscription.

    *)
  4. status : String_.t option;
    (*

    The status of the DMS event notification subscription. Constraints: Can be one of the following: creating | modifying | deleting | active | no-permission | topic-not-exist The status "no-permission" indicates that DMS no longer has permission to post to the SNS topic. The status "topic-not-exist" indicates that the topic was deleted after the subscription was created.

    *)
  5. subscriptionCreationTime : String_.t option;
    (*

    The time the DMS event notification subscription was created.

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

    The type of DMS resource that generates events. Valid values: replication-instance | replication-server | security-group | replication-task

    *)
  7. sourceIdsList : SourceIdsList.t option;
    (*

    A list of source Ids for the event subscription.

    *)
  8. eventCategoriesList : EventCategoriesList.t option;
    (*

    A lists of event categories.

    *)
  9. enabled : Boolean.t option;
    (*

    Boolean value that indicates if the event subscription is enabled.

    *)
}
Sourceval make : ?customerAwsId:??? -> ?custSubscriptionId:??? -> ?snsTopicArn:??? -> ?status:??? -> ?subscriptionCreationTime:??? -> ?sourceType:??? -> ?sourceIdsList:??? -> ?eventCategoriesList:??? -> ?enabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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