Module Values.CreateFlowAliasResponseSource

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 option;
    (*

    The name of the alias.

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

    The description of the alias.

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

    Contains information about the version that the alias is mapped to.

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

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

    *)
  5. flowId : FlowId.t option;
    (*

    The unique identifier of the flow that the alias belongs to.

    *)
  6. id : FlowAliasId.t option;
    (*

    The unique identifier of the alias.

    *)
  7. arn : FlowAliasArn.t option;
    (*

    The Amazon Resource Name (ARN) of the alias.

    *)
  8. createdAt : DateTimestamp.t option;
    (*

    The time at which the alias was created.

    *)
  9. updatedAt : DateTimestamp.t option;
    (*

    The time at which the alias of the flow was last updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?description:??? -> ?routingConfiguration:??? -> ?concurrencyConfiguration:??? -> ?flowId:??? -> ?id:??? -> ?arn:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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 | `Timestamp of DateTimestamp.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