Module Values_0.ContactFlowModuleVersionSummarySource

Contains information about a version.

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

    The Amazon Resource Name (ARN) of the flow module version.

    *)
  2. versionDescription : ContactFlowModuleDescription.t option;
    (*

    The description of the flow module version.

    *)
  3. version : ResourceVersion.t option;
    (*

    The version of the flow module.

    *)
}
Sourceval make : ?arn:??? -> ?versionDescription:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ResourceVersion.t | `String of 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