You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Comprehend::Types::EndpointFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EndpointFilter
- Defined in:
- (unknown)
Overview
When passing EndpointFilter as input to an Aws::Client method, you can use a vanilla Hash:
{
model_arn: "ComprehendModelArn",
status: "CREATING", # accepts CREATING, DELETING, FAILED, IN_SERVICE, UPDATING
creation_time_before: Time.now,
creation_time_after: Time.now,
}
The filter used to determine which endpoints are are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.
Returned by:
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
Specifies a date after which the returned endpoint or endpoints were created.
-
#creation_time_before ⇒ Time
Specifies a date before which the returned endpoint or endpoints were created.
-
#model_arn ⇒ String
The Amazon Resource Number (ARN) of the model to which the endpoint is attached.
-
#status ⇒ String
Specifies the status of the endpoint being returned.
Instance Attribute Details
#creation_time_after ⇒ Time
Specifies a date after which the returned endpoint or endpoints were created.
#creation_time_before ⇒ Time
Specifies a date before which the returned endpoint or endpoints were created.
#model_arn ⇒ String
The Amazon Resource Number (ARN) of the model to which the endpoint is attached.
#status ⇒ String
Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.
Possible values:
- CREATING
- DELETING
- FAILED
- IN_SERVICE
- UPDATING