Module Values.CreateFlowAliasRequestSource

Creates an alias of a flow for deployment. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

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

    A name for 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 for which to create an alias.

    *)
  6. 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.

    *)
  7. tags : TagsMap.t option;
    (*

    Any tags that you want to attach to the alias of the flow. For more information, see Tagging resources in Amazon Bedrock.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?concurrencyConfiguration:??? -> ?clientToken:??? -> ?tags:??? -> name:Name.t -> routingConfiguration:FlowAliasRoutingConfiguration.t -> flowIdentifier:FlowIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Version.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) 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