Class: Aws::WorkDocs::Types::DateRangeType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-workdocs/types.rb

Overview

Filters results based on timestamp range (in epochs).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_valueTime

Timestamp range end value (in epochs).

Returns:

  • (Time)


584
585
586
587
588
589
# File 'lib/aws-sdk-workdocs/types.rb', line 584

class DateRangeType < Struct.new(
  :start_value,
  :end_value)
  SENSITIVE = []
  include Aws::Structure
end

#start_valueTime

Timestamp range start value (in epochs)

Returns:

  • (Time)


584
585
586
587
588
589
# File 'lib/aws-sdk-workdocs/types.rb', line 584

class DateRangeType < Struct.new(
  :start_value,
  :end_value)
  SENSITIVE = []
  include Aws::Structure
end