Module Values_0.ContactFlowModuleSummarySource

Contains summary information about a flow.

Sourcetype nonrec t = {
  1. id : ContactFlowModuleId.t option;
    (*

    The identifier of the flow module.

    *)
  2. arn : ARN.t option;
    (*

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

    *)
  3. name : ContactFlowModuleName.t option;
    (*

    The name of the flow module.

    *)
  4. state : ContactFlowModuleState.t option;
    (*

    The type of flow module.

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