Module Values.DeleteTopicInputSource

Deletes a topic and all its subscriptions. Deleting a topic might prevent some messages previously sent to the topic from being delivered to subscribers. This action is idempotent, so deleting a topic that does not exist does not result in an error.

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

    The ARN of the topic you want to delete.

    *)
}
Sourceval context_ : string
Sourceval make : topicArn:TopicARN.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