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.
3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3586 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.
3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3586 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.
3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3586 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.
3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3586 class EndpointFilter < Struct.new( :model_arn, :status, :creation_time_before, :creation_time_after) SENSITIVE = [] include Aws::Structure end |