Module Values.SubscriptionSource

A wrapper type for the attributes of an Amazon SNS subscription.

Sourcetype nonrec t = {
  1. subscriptionArn : SubscriptionARN.t option;
    (*

    The subscription's ARN.

    *)
  2. owner : Account.t option;
    (*

    The subscription's owner.

    *)
  3. protocol : Protocol.t option;
    (*

    The subscription's protocol.

    *)
  4. endpoint : string option;
    (*

    The subscription's endpoint (format depends on the protocol).

    *)
  5. topicArn : TopicARN.t option;
    (*

    The ARN of the subscription's topic.

    *)
}
Sourceval make : ?subscriptionArn:??? -> ?owner:??? -> ?protocol:??? -> ?endpoint:??? -> ?topicArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SubscriptionARN.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