Module Values_0.ContactFlowSource

Contains information about a flow.

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

    The Amazon Resource Name (ARN) of the flow.

    *)
  2. id : ContactFlowId.t option;
    (*

    The identifier of the flow.

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

    The name of the flow.

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

    The type of the flow. For descriptions of the available types, see Choose a flow type in the Amazon Connect Administrator Guide.

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

    The type of flow.

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

    The status of the flow.

    *)
  7. description : ContactFlowDescription.t option;
    (*

    The description of the flow.

    *)
  8. content : ContactFlowContent.t option;
    (*

    The JSON string that represents the content of the flow. For an example, see Example flow in Amazon Connect Flow language. Length Constraints: Minimum length of 1. Maximum length of 256000.

    *)
  9. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
  10. flowContentSha256 : FlowContentSha256.t option;
    (*

    Indicates the checksum value of the flow content.

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

    The identifier of the flow version.

    *)
  12. versionDescription : ContactFlowDescription.t option;
    (*

    The description of the flow version.

    *)
  13. lastModifiedTime : Timestamp.t option;
    (*

    The time at which the flow was last modified.

    *)
  14. lastModifiedRegion : RegionName.t option;
    (*

    The region in which the flow was last modified

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?type_:??? -> ?state:??? -> ?status:??? -> ?description:??? -> ?content:??? -> ?tags:??? -> ?flowContentSha256:??? -> ?version:??? -> ?versionDescription:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ResourceVersion.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ARN.t | `Timestamp of Timestamp.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