Module Values.EventSubscriptionSource

Detailed information about an event to which you have subscribed.

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

    The Amazon Web Services customer account that is associated with the Amazon DocumentDB event notification subscription.

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

    The Amazon DocumentDB event notification subscription ID.

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

    The topic ARN of the Amazon DocumentDB event notification subscription.

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

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

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

    The time at which the Amazon DocumentDB event notification subscription was created.

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

    The source type for the Amazon DocumentDB event notification subscription.

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

    A list of source IDs for the Amazon DocumentDB event notification subscription.

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

    A list of event categories for the Amazon DocumentDB event notification subscription.

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

    A Boolean value indicating whether the subscription is enabled. A value of true indicates that the subscription is enabled.

    *)
  10. eventSubscriptionArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the event subscription.

    *)
}
Sourceval make : ?customerAwsId:??? -> ?custSubscriptionId:??? -> ?snsTopicArn:??? -> ?status:??? -> ?subscriptionCreationTime:??? -> ?sourceType:??? -> ?sourceIdsList:??? -> ?eventCategoriesList:??? -> ?enabled:??? -> ?eventSubscriptionArn:??? -> 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