Class: Aws::BCMDashboards::Types::DateTimeValue

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

Overview

Represents a point in time that can be specified as either an absolute date (for example, "2025-07-01") or a relative time period using ISO 8601 duration format (for example, "-P3M" for three months ago).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The type of date/time value: ABSOLUTE for specific dates or RELATIVE for dynamic time periods.

Returns:

  • (String)


216
217
218
219
220
221
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 216

class DateTimeValue < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The actual date/time value.

Returns:

  • (String)


216
217
218
219
220
221
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 216

class DateTimeValue < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end