Class: Aws::IoT::Types::TimeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::TimeFilter
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
A filter that can be used to list command executions for a device that started or completed before or after a particular date and time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#after ⇒ String
Filter to display command executions that started or completed only after a particular date and time.
-
#before ⇒ String
Filter to display command executions that started or completed only before a particular date and time.
Instance Attribute Details
#after ⇒ String
Filter to display command executions that started or completed only after a particular date and time.
16512 16513 16514 16515 16516 16517 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16512 class TimeFilter < Struct.new( :after, :before) SENSITIVE = [] include Aws::Structure end |
#before ⇒ String
Filter to display command executions that started or completed only before a particular date and time.
16512 16513 16514 16515 16516 16517 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16512 class TimeFilter < Struct.new( :after, :before) SENSITIVE = [] include Aws::Structure end |