Module Values_0.CreateContactFlowVersionRequestSource

Publishes a new version of the flow provided. Versions are immutable and monotonically increasing. If the FlowContentSha256 provided is different from the FlowContentSha256 of the $LATEST published flow content, then an error is returned. This API only supports creating versions for flows of type Campaign.

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

    The identifier of the Amazon Connect instance.

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

    The description of the flow version.

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

    The identifier of the flow.

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

    Indicates the checksum value of the flow content.

    *)
  5. contactFlowVersion : ResourceVersion.t option;
    (*

    The identifier of the flow version.

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

    The Amazon Web Services Region where this resource was last modified.

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

    The Amazon Web Services Region where this resource was last modified.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?flowContentSha256:??? -> ?contactFlowVersion:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> instanceId:InstanceId.t -> contactFlowId:ARN.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ResourceVersion.t | `String of InstanceId.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