Module Values_0.CreateContactFlowModuleRequestSource

Creates a flow module for the specified Amazon Connect instance.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. name : ContactFlowModuleName.t;
    (*

    The name of the flow module.

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

    The description of the flow module.

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

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

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

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

    *)
  6. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

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

    The configuration settings for the flow module.

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

    The external invocation configuration for the flow module.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?clientToken:??? -> ?settings:??? -> ?externalInvocationConfiguration:??? -> instanceId:InstanceId.t -> name:ContactFlowModuleName.t -> content:ContactFlowModuleContent.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of InstanceId.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