Class: Aws::EventBridge::Types::StartReplayRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::StartReplayRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
When making an API call, you may pass StartReplayRequest data as a hash:
{
replay_name: "ReplayName", # required
description: "ReplayDescription",
event_source_arn: "Arn", # required
event_start_time: Time.now, # required
event_end_time: Time.now, # required
destination: { # required
arn: "Arn", # required
filter_arns: ["Arn"],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description for the replay to start.
-
#destination ⇒ Types::ReplayDestination
A
ReplayDestination
object that includes details about the destination for the replay. -
#event_end_time ⇒ Time
A time stamp for the time to stop replaying events.
-
#event_source_arn ⇒ String
The ARN of the archive to replay events from.
-
#event_start_time ⇒ Time
A time stamp for the time to start replaying events.
-
#replay_name ⇒ String
The name of the replay to start.
Instance Attribute Details
#description ⇒ String
A description for the replay to start.
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5359 class StartReplayRequest < Struct.new( :replay_name, :description, :event_source_arn, :event_start_time, :event_end_time, :destination) SENSITIVE = [] include Aws::Structure end |
#destination ⇒ Types::ReplayDestination
A ReplayDestination
object that includes details about the
destination for the replay.
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5359 class StartReplayRequest < Struct.new( :replay_name, :description, :event_source_arn, :event_start_time, :event_end_time, :destination) SENSITIVE = [] include Aws::Structure end |
#event_end_time ⇒ Time
A time stamp for the time to stop replaying events. Only events that
occurred between the EventStartTime
and EventEndTime
are
replayed.
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5359 class StartReplayRequest < Struct.new( :replay_name, :description, :event_source_arn, :event_start_time, :event_end_time, :destination) SENSITIVE = [] include Aws::Structure end |
#event_source_arn ⇒ String
The ARN of the archive to replay events from.
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5359 class StartReplayRequest < Struct.new( :replay_name, :description, :event_source_arn, :event_start_time, :event_end_time, :destination) SENSITIVE = [] include Aws::Structure end |
#event_start_time ⇒ Time
A time stamp for the time to start replaying events. Only events
that occurred between the EventStartTime
and EventEndTime
are
replayed.
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5359 class StartReplayRequest < Struct.new( :replay_name, :description, :event_source_arn, :event_start_time, :event_end_time, :destination) SENSITIVE = [] include Aws::Structure end |
#replay_name ⇒ String
The name of the replay to start.
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 5359 class StartReplayRequest < Struct.new( :replay_name, :description, :event_source_arn, :event_start_time, :event_end_time, :destination) SENSITIVE = [] include Aws::Structure end |