Class: Aws::IoT::Types::TimeFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#afterString

Filter to display command executions that started or completed only after a particular date and time.

Returns:

  • (String)


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

#beforeString

Filter to display command executions that started or completed only before a particular date and time.

Returns:

  • (String)


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