Class: Aws::ACM::Types::TimestampRange

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

Overview

Specifies a time range for filtering certificates.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#endTime

The end of the time range. This value is inclusive.

Returns:

  • (Time)


2370
2371
2372
2373
2374
2375
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 2370

class TimestampRange < Struct.new(
  :start,
  :end)
  SENSITIVE = []
  include Aws::Structure
end

#startTime

The start of the time range. This value is inclusive.

Returns:

  • (Time)


2370
2371
2372
2373
2374
2375
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 2370

class TimestampRange < Struct.new(
  :start,
  :end)
  SENSITIVE = []
  include Aws::Structure
end