Module Values.CreateFlowVersionRequestSource

Creates a version of the flow that you can deploy. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. flowIdentifier : FlowIdentifier.t;
    (*

    The unique identifier of the flow that you want to create a version of.

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

    A description of the version of the flow.

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

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?clientToken:??? -> flowIdentifier:FlowIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FlowIdentifier.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