Class: Aws::Comprehend::Types::EndpointFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EndpointFilter
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
When making an API call, you may pass EndpointFilter data as a 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 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.
Constant Summary collapse
- SENSITIVE =
[]
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.
2833 2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2833 class EndpointFilter < Struct.new( :model_arn, :status, :creation_time_before, :creation_time_after) SENSITIVE = [] include Aws::Structure end |
#creation_time_before ⇒ Time
Specifies a date before which the returned endpoint or endpoints were created.
2833 2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2833 class EndpointFilter < Struct.new( :model_arn, :status, :creation_time_before, :creation_time_after) SENSITIVE = [] include Aws::Structure end |
#model_arn ⇒ String
The Amazon Resource Number (ARN) of the model to which the endpoint is attached.
2833 2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2833 class EndpointFilter < Struct.new( :model_arn, :status, :creation_time_before, :creation_time_after) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.
2833 2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2833 class EndpointFilter < Struct.new( :model_arn, :status, :creation_time_before, :creation_time_after) SENSITIVE = [] include Aws::Structure end |