Class: Aws::Braket::Types::TimePeriod

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

Overview

Defines a time range for spending limits, specifying when the limit is active.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_atTime

The end date and time for the spending limit period, in epoch seconds.

Returns:

  • (Time)


1742
1743
1744
1745
1746
1747
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 1742

class TimePeriod < Struct.new(
  :start_at,
  :end_at)
  SENSITIVE = []
  include Aws::Structure
end

#start_atTime

The start date and time for the spending limit period, in epoch seconds.

Returns:

  • (Time)


1742
1743
1744
1745
1746
1747
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 1742

class TimePeriod < Struct.new(
  :start_at,
  :end_at)
  SENSITIVE = []
  include Aws::Structure
end