Module Values_0.ContactFlowModuleSource

Contains information about a flow module.

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

    The Amazon Resource Name (ARN).

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

    The identifier of the flow module.

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

    The name of the flow module.

    *)
  4. content : ContactFlowModuleContent.t option;
    (*

    The JSON string that represents the content of the flow. For an example, see Example flow in Amazon Connect Flow language.

    *)
  5. description : ContactFlowModuleDescription.t option;
    (*

    The description of the flow module.

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

    The type of flow module.

    *)
  7. status : ContactFlowModuleStatus.t option;
    (*

    The status of the flow module.

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

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

    *)
  9. flowModuleContentSha256 : FlowModuleContentSha256.t option;
    (*

    Hash of the module content for integrity verification.

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

    The version of the flow module.

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

    Description of the version.

    *)
  12. settings : FlowModuleSettings.t option;
    (*

    The configuration settings for the flow module.

    *)
  13. externalInvocationConfiguration : ExternalInvocationConfiguration.t option;
    (*

    The external invocation configuration for the flow module

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?content:??? -> ?description:??? -> ?state:??? -> ?status:??? -> ?tags:??? -> ?flowModuleContentSha256:??? -> ?version:??? -> ?versionDescription:??? -> ?settings:??? -> ?externalInvocationConfiguration:??? -> 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 | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) 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