Module Values.UpdateEndpointRequestSource

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

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

    The Amazon Resource Number (ARN) of the endpoint being updated.

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

    The ARN of the new model to use when updating an existing endpoint.

    *)
  3. 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.

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

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

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

    The Amazon Resource Number (ARN) of the flywheel

    *)
}
Sourceval context_ : string
Sourceval make : ?desiredModelArn:??? -> ?desiredInferenceUnits:??? -> ?desiredDataAccessRoleArn:??? -> ?flywheelArn:??? -> endpointArn:ComprehendEndpointArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of InferenceUnitsInteger.t | `String of ComprehendEndpointArn.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