Module Values_0.CreateContactFlowModuleVersionRequestSource

Creates an immutable snapshot of a contact flow module, preserving its content and settings at a specific point in time for version control and rollback capabilities.

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. description : ContactFlowModuleDescription.t option;
    (*

    The description of the flow module version.

    *)
  3. contactFlowModuleId : ARN.t;
    (*

    The identifier of the flow module.

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

    Indicates the checksum value of the flow module content.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?flowModuleContentSha256:??? -> instanceId:InstanceId.t -> contactFlowModuleId:ARN.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of InstanceId.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