Module Values.GetInferenceProfileResponseSource

Gets information about an inference profile. For more information, see Increase throughput and resilience with cross-region inference in Amazon Bedrock. in the Amazon Bedrock User Guide.

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.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?inferenceProfileName:??? -> ?description:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?inferenceProfileArn:??? -> ?models:??? -> ?inferenceProfileId:??? -> ?status:??? -> ?type_:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 * [> `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