Module Values_0.ContactFlowSummarySource

Contains summary information about a flow. You can also create and update flows using the Amazon Connect Flow language.

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

    The identifier of the flow.

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

    The Amazon Resource Name (ARN) of the flow.

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

    The name of the flow.

    *)
  4. contactFlowType : ContactFlowType.t option;
    (*

    The type of flow.

    *)
  5. contactFlowState : ContactFlowState.t option;
    (*

    The type of flow.

    *)
  6. contactFlowStatus : ContactFlowStatus.t option;
    (*

    The status of the flow.

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