Module Values_2.InferenceComponentSummarySource

A summary of the properties of an inference component.

Sourcetype nonrec t = {
  1. creationTime : Values_0.Timestamp.t option;
    (*

    The time when the inference component was created.

    *)
  2. inferenceComponentArn : Values_1.InferenceComponentArn.t option;
    (*

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

    *)
  3. inferenceComponentName : Values_1.InferenceComponentName.t option;
    (*

    The name of the inference component.

    *)
  4. endpointArn : Values_0.EndpointArn.t option;
    (*

    The Amazon Resource Name (ARN) of the endpoint that hosts the inference component.

    *)
  5. endpointName : Values_0.EndpointName.t option;
    (*

    The name of the endpoint that hosts the inference component.

    *)
  6. variantName : Values_0.VariantName.t option;
    (*

    The name of the production variant that hosts the inference component.

    *)
  7. inferenceComponentStatus : Values_1.InferenceComponentStatus.t option;
    (*

    The status of the inference component.

    *)
  8. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The time when the inference component was last updated.

    *)
}
Sourceval make : ?creationTime:??? -> ?inferenceComponentArn:??? -> ?inferenceComponentName:??? -> ?endpointArn:??? -> ?endpointName:??? -> ?variantName:??? -> ?inferenceComponentStatus:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.InferenceComponentArn.t | `Timestamp of Values_0.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