Module Values.UpdateFlowAliasRequestSource

Modifies the alias of a flow. Include both fields that you want to keep and ones that you want to change. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. name : Name.t;
    (*

    The name of the alias.

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

    A description for the alias.

    *)
  3. routingConfiguration : FlowAliasRoutingConfiguration.t;
    (*

    Contains information about the version to which to map the alias.

    *)
  4. concurrencyConfiguration : FlowAliasConcurrencyConfiguration.t option;
    (*

    The configuration that specifies how nodes in the flow are executed in parallel.

    *)
  5. flowIdentifier : FlowIdentifier.t;
    (*

    The unique identifier of the flow.

    *)
  6. aliasIdentifier : FlowAliasIdentifier.t;
    (*

    The unique identifier of the alias.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?concurrencyConfiguration:??? -> name:Name.t -> routingConfiguration:FlowAliasRoutingConfiguration.t -> flowIdentifier:FlowIdentifier.t -> aliasIdentifier:FlowAliasIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Version.t ]) list ] list | `String of Name.t | `Structure of (string * [> `Enum of string | `Integer of FlowAliasConcurrencyConfigurationMaxConcurrencyInteger.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