Class: Aws::EventBridgeV2::Types::PointInTimeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridgeV2::Types::PointInTimeConfiguration
- 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
-
#end_point ⇒ Time
Timestamp to stop at.
-
#point_type ⇒ String
Whether to start from the horizon or a specific timestamp.
-
#starting_point ⇒ Time
Timestamp to start from.
Instance Attribute Details
#end_point ⇒ Time
Timestamp to stop at. Optional.
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.
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.
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 |