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
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.
3642 3643 3644 3645 3646 3647 3648 3649 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3642 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.
3642 3643 3644 3645 3646 3647 3648 3649 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3642 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.
3642 3643 3644 3645 3646 3647 3648 3649 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3642 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.
3642 3643 3644 3645 3646 3647 3648 3649 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3642 class EndpointFilter < Struct.new( :model_arn, :status, :creation_time_before, :creation_time_after) SENSITIVE = [] include Aws::Structure end |