Module Values.UpdateProvisionedModelThroughputRequestSource

Updates the name or associated model for a Provisioned Throughput. For more information, see Provisioned Throughput in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. provisionedModelId : ProvisionedModelId.t;
    (*

    The Amazon Resource Name (ARN) or name of the Provisioned Throughput to update.

    *)
  2. desiredProvisionedModelName : ProvisionedModelName.t option;
    (*

    The new name for this Provisioned Throughput.

    *)
  3. desiredModelId : ModelIdentifier.t option;
    (*

    The Amazon Resource Name (ARN) of the new model to associate with this Provisioned Throughput. You can't specify this field if this Provisioned Throughput is associated with a base model. If this Provisioned Throughput is associated with a custom model, you can specify one of the following options: The base model from which the custom model was customized. Another custom model that was customized from the same base model as the custom model.

    *)
}
Sourceval context_ : string
Sourceval make : ?desiredProvisionedModelName:??? -> ?desiredModelId:??? -> provisionedModelId:ProvisionedModelId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProvisionedModelId.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