Class: Aws::EventBridgeV2::Types::PointInTimeConfiguration

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

Overview

Point-in-time configuration for a subscriber. Only applicable when StartingPosition is POINT_IN_TIME.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_point ⇒ Time

Timestamp to stop at. Optional.

Returns:

  • (Time)


1878
1879
1880
1881
1882
1883
1884
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1878

class PointInTimeConfiguration < Struct.new(
  :point_type,
  :starting_point,
  :end_point)
  SENSITIVE = []
  include Aws::Structure
end

#point_type ⇒ String

Whether to start from the horizon or a specific timestamp.

Returns:

  • (String)


1878
1879
1880
1881
1882
1883
1884
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1878

class PointInTimeConfiguration < Struct.new(
  :point_type,
  :starting_point,
  :end_point)
  SENSITIVE = []
  include Aws::Structure
end

#starting_point ⇒ Time

Timestamp to start from. Required when PointType is TIMESTAMP.

Returns:

  • (Time)


1878
1879
1880
1881
1882
1883
1884
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1878

class PointInTimeConfiguration < Struct.new(
  :point_type,
  :starting_point,
  :end_point)
  SENSITIVE = []
  include Aws::Structure
end