Module Values_2.TopicSummarySource

A topic summary.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the topic.

    *)
  2. topicId : Values_1.TopicId.t option;
    (*

    The ID for the topic. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.

    *)
  3. name : Values_1.ResourceName.t option;
    (*

    The name of the topic.

    *)
  4. userExperienceVersion : Values_1.TopicUserExperienceVersion.t option;
    (*

    The user experience version of the topic.

    *)
}
Sourceval make : ?arn:??? -> ?topicId:??? -> ?name:??? -> ?userExperienceVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.Arn.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