![]() |
![]()
| ![]() |
![]()
NAMEPaws::CloudWatchEvents::StartReplay - Arguments for method StartReplay on Paws::CloudWatchEvents DESCRIPTIONThis class represents the parameters used for calling the method StartReplay on the Amazon EventBridge service. Use the attributes of this class as arguments to method StartReplay. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartReplay. SYNOPSISmy $events = Paws->service('CloudWatchEvents'); my $StartReplayResponse = $events->StartReplay( Destination => { Arn => 'MyArn', # min: 1, max: 1600 FilterArns => [ 'MyArn', ... # min: 1, max: 1600 ], # OPTIONAL }, EventEndTime => '1970-01-01T01:00:00', EventSourceArn => 'MyArn', EventStartTime => '1970-01-01T01:00:00', ReplayName => 'MyReplayName', Description => 'MyReplayDescription', # OPTIONAL ); # Results: my $ReplayArn = $StartReplayResponse->ReplayArn; my $ReplayStartTime = $StartReplayResponse->ReplayStartTime; my $State = $StartReplayResponse->State; my $StateReason = $StartReplayResponse->StateReason; # Returns a L<Paws::CloudWatchEvents::StartReplayResponse> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/events/StartReplay> ATTRIBUTESDescription => StrA description for the replay to start. REQUIRED Destination => Paws::CloudWatchEvents::ReplayDestinationA "ReplayDestination" object that includes details about the destination for the replay. REQUIRED EventEndTime => StrA time stamp for the time to stop replaying events. Only events that occurred between the "EventStartTime" and "EventEndTime" are replayed. REQUIRED EventSourceArn => StrThe ARN of the archive to replay events from. REQUIRED EventStartTime => StrA time stamp for the time to start replaying events. Only events that occurred between the "EventStartTime" and "EventEndTime" are replayed. REQUIRED ReplayName => StrThe name of the replay to start. SEE ALSOThis class forms part of Paws, documenting arguments for method StartReplay in Paws::CloudWatchEvents BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|