Module Values.InferenceProfileSummarySource

Contains information about an inference profile.

Sourcetype nonrec t = {
  1. inferenceProfileName : InferenceProfileName.t option;
    (*

    The name of the inference profile.

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

    The description of the inference profile.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The time at which the inference profile was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The time at which the inference profile was last updated.

    *)
  5. inferenceProfileArn : InferenceProfileArn.t option;
    (*

    The Amazon Resource Name (ARN) of the inference profile.

    *)
  6. models : InferenceProfileModels.t option;
    (*

    A list of information about each model in the inference profile.

    *)
  7. inferenceProfileId : InferenceProfileId.t option;
    (*

    The unique identifier of the inference profile.

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

    The status of the inference profile. ACTIVE means that the inference profile is ready to be used.

    *)
  9. type_ : InferenceProfileType.t option;
    (*

    The type of the inference profile. The following types are possible: SYSTEM_DEFINED – The inference profile is defined by Amazon Bedrock. You can route inference requests across regions with these inference profiles. APPLICATION – The inference profile was created by a user. This type of inference profile can track metrics and costs when invoking the model in it. The inference profile may route requests to one or multiple regions.

    *)
}
Sourceval make : ?inferenceProfileName:??? -> ?description:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?inferenceProfileArn:??? -> ?models:??? -> ?inferenceProfileId:??? -> ?status:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of FoundationModelArn.t ]) list ] list | `String of InferenceProfileName.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