Description Usage Arguments Value Request syntax
View source: R/comprehend_operations.R
Gets the properties associated with a specific endpoint. Use this operation to get the status of an endpoint.
1 | comprehend_describe_endpoint(EndpointArn)
|
EndpointArn |
[required] The Amazon Resource Number (ARN) of the endpoint being described. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | list(
EndpointProperties = list(
EndpointArn = "string",
Status = "CREATING"|"DELETING"|"FAILED"|"IN_SERVICE"|"UPDATING",
Message = "string",
ModelArn = "string",
DesiredInferenceUnits = 123,
CurrentInferenceUnits = 123,
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
|
1 2 3 | svc$describe_endpoint(
EndpointArn = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.