Class: Aws::Comprehend::Types::FlywheelFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::FlywheelFilter
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Filter the flywheels based on creation time or flywheel status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
Filter the flywheels to include flywheels created after the specified time.
-
#creation_time_before ⇒ Time
Filter the flywheels to include flywheels created before the specified time.
-
#status ⇒ String
Filter the flywheels based on the flywheel status.
Instance Attribute Details
#creation_time_after ⇒ Time
Filter the flywheels to include flywheels created after the specified time.
4691 4692 4693 4694 4695 4696 4697 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4691 class FlywheelFilter < Struct.new( :status, :creation_time_after, :creation_time_before) SENSITIVE = [] include Aws::Structure end |
#creation_time_before ⇒ Time
Filter the flywheels to include flywheels created before the specified time.
4691 4692 4693 4694 4695 4696 4697 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4691 class FlywheelFilter < Struct.new( :status, :creation_time_after, :creation_time_before) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Filter the flywheels based on the flywheel status.
4691 4692 4693 4694 4695 4696 4697 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4691 class FlywheelFilter < Struct.new( :status, :creation_time_after, :creation_time_before) SENSITIVE = [] include Aws::Structure end |