Module Values.EndpointPropertiesSource

Specifies information about the specified endpoint. For information about endpoints, see Managing endpoints.

Sourcetype nonrec t = {
  1. endpointArn : ComprehendEndpointArn.t option;
    (*

    The Amazon Resource Number (ARN) of the endpoint.

    *)
  2. status : EndpointStatus.t option;
    (*

    Specifies the status of the endpoint. Because the endpoint updates and creation are asynchronous, so customers will need to wait for the endpoint to be Ready status before making inference requests.

    *)
  3. message : AnyLengthString.t option;
    (*

    Specifies a reason for failure in cases of Failed status.

    *)
  4. modelArn : ComprehendModelArn.t option;
    (*

    The Amazon Resource Number (ARN) of the model to which the endpoint is attached.

    *)
  5. desiredModelArn : ComprehendModelArn.t option;
    (*

    ARN of the new model to use for updating an existing endpoint. This ARN is going to be different from the model ARN when the update is in progress

    *)
  6. desiredInferenceUnits : InferenceUnitsInteger.t option;
    (*

    The desired number of inference units to be used by the model using this endpoint. Each inference unit represents of a throughput of 100 characters per second.

    *)
  7. currentInferenceUnits : InferenceUnitsInteger.t option;
    (*

    The number of inference units currently used by the model using this endpoint.

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

    The creation date and time of the endpoint.

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

    The date and time that the endpoint was last modified.

    *)
  10. dataAccessRoleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to trained custom models encrypted with a customer managed key (ModelKmsKeyId).

    *)
  11. desiredDataAccessRoleArn : IamRoleArn.t option;
    (*

    Data access role ARN to use in case the new model is encrypted with a customer KMS key.

    *)
  12. flywheelArn : ComprehendFlywheelArn.t option;
    (*

    The Amazon Resource Number (ARN) of the flywheel

    *)
}
Sourceval make : ?endpointArn:??? -> ?status:??? -> ?message:??? -> ?modelArn:??? -> ?desiredModelArn:??? -> ?desiredInferenceUnits:??? -> ?currentInferenceUnits:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?dataAccessRoleArn:??? -> ?desiredDataAccessRoleArn:??? -> ?flywheelArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of InferenceUnitsInteger.t | `String of ComprehendEndpointArn.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