Class: Aws::Detective::Types::DateFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb

Overview

Contains details on the time range used to filter data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_inclusiveTime

A timestamp representing the end date of the time period until when data is filtered, including the end date.

Returns:

  • (Time)


340
341
342
343
344
345
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 340

class DateFilter < Struct.new(
  :start_inclusive,
  :end_inclusive)
  SENSITIVE = []
  include Aws::Structure
end

#start_inclusiveTime

A timestamp representing the start of the time period from when data is filtered, including the start date.

Returns:

  • (Time)


340
341
342
343
344
345
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 340

class DateFilter < Struct.new(
  :start_inclusive,
  :end_inclusive)
  SENSITIVE = []
  include Aws::Structure
end