Values.UpdateEndpointRequestSourceUpdates information about the specified endpoint. For information about endpoints, see Managing endpoints.
type nonrec t = {endpointArn : ComprehendEndpointArn.t;The Amazon Resource Number (ARN) of the endpoint being updated.
*)desiredModelArn : ComprehendModelArn.t option;The ARN of the new model to use when updating an existing endpoint.
*)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.
*)desiredDataAccessRoleArn : IamRoleArn.t option;Data access role ARN to use in case the new model is encrypted with a customer CMK.
*)flywheelArn : ComprehendFlywheelArn.t option;The Amazon Resource Number (ARN) of the flywheel
*)}val make :
?desiredModelArn:??? ->
?desiredInferenceUnits:??? ->
?desiredDataAccessRoleArn:??? ->
?flywheelArn:??? ->
endpointArn:ComprehendEndpointArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of InferenceUnitsInteger.t
| `String of ComprehendEndpointArn.t ])
list ]