Module Values.ProvisionedModelSummarySource

A summary of information about a Provisioned Throughput. This data type is used in the following API operations: ListProvisionedThroughputs response

Sourcetype nonrec t = {
  1. provisionedModelName : ProvisionedModelName.t option;
    (*

    The name of the Provisioned Throughput.

    *)
  2. provisionedModelArn : ProvisionedModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Provisioned Throughput.

    *)
  3. modelArn : ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model associated with the Provisioned Throughput.

    *)
  4. desiredModelArn : ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model requested to be associated to this Provisioned Throughput. This value differs from the modelArn if updating hasn't completed.

    *)
  5. foundationModelArn : FoundationModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the base model for which the Provisioned Throughput was created, or of the base model that the custom model for which the Provisioned Throughput was created was customized.

    *)
  6. modelUnits : PositiveInteger.t option;
    (*

    The number of model units allocated to the Provisioned Throughput.

    *)
  7. desiredModelUnits : PositiveInteger.t option;
    (*

    The number of model units that was requested to be allocated to the Provisioned Throughput.

    *)
  8. status : ProvisionedModelStatus.t option;
    (*

    The status of the Provisioned Throughput.

    *)
  9. commitmentDuration : CommitmentDuration.t option;
    (*

    The duration for which the Provisioned Throughput was committed.

    *)
  10. commitmentExpirationTime : Timestamp.t option;
    (*

    The timestamp for when the commitment term of the Provisioned Throughput expires.

    *)
  11. creationTime : Timestamp.t option;
    (*

    The time that the Provisioned Throughput was created.

    *)
  12. lastModifiedTime : Timestamp.t option;
    (*

    The time that the Provisioned Throughput was last modified.

    *)
}
Sourceval make : ?provisionedModelName:??? -> ?provisionedModelArn:??? -> ?modelArn:??? -> ?desiredModelArn:??? -> ?foundationModelArn:??? -> ?modelUnits:??? -> ?desiredModelUnits:??? -> ?status:??? -> ?commitmentDuration:??? -> ?commitmentExpirationTime:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PositiveInteger.t | `String of ProvisionedModelName.t | `Timestamp of Timestamp.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