Class: Aws::Shield::Types::TimeRange

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

Overview

The time range.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#from_inclusiveTime

The start time, in Unix time in seconds.

Returns:

  • (Time)


2086
2087
2088
2089
2090
2091
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 2086

class TimeRange < Struct.new(
  :from_inclusive,
  :to_exclusive)
  SENSITIVE = []
  include Aws::Structure
end

#to_exclusiveTime

The end time, in Unix time in seconds.

Returns:

  • (Time)


2086
2087
2088
2089
2090
2091
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 2086

class TimeRange < Struct.new(
  :from_inclusive,
  :to_exclusive)
  SENSITIVE = []
  include Aws::Structure
end