Module Values.ConfirmSubscriptionInputSource

Input for ConfirmSubscription action.

Sourcetype nonrec t = {
  1. topicArn : TopicARN.t;
    (*

    The ARN of the topic for which you wish to confirm a subscription.

    *)
  2. token : Token.t;
    (*

    Short-lived token sent to an endpoint during the Subscribe action.

    *)
  3. authenticateOnUnsubscribe : AuthenticateOnUnsubscribe.t option;
    (*

    Disallows unauthenticated unsubscribes of the subscription. If the value of this parameter is true and the request has an Amazon Web Services signature, then only the topic owner and the subscription owner can unsubscribe the endpoint. The unsubscribe action requires Amazon Web Services authentication.

    *)
}
Sourceval context_ : string
Sourceval make : ?authenticateOnUnsubscribe:??? -> topicArn:TopicARN.t -> token:Token.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TopicARN.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