NAME

Paws::CloudWatchEvents::StartReplay - Arguments for method StartReplay on Paws::CloudWatchEvents

DESCRIPTION

This 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.

SYNOPSIS

my $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

ATTRIBUTES

Description => Str

A description for the replay to start.

REQUIRED Destination => Paws::CloudWatchEvents::ReplayDestination

A ReplayDestination object that includes details about the destination for the replay.

REQUIRED EventEndTime => Str

A time stamp for the time to stop replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

REQUIRED EventSourceArn => Str

The ARN of the archive to replay events from.

REQUIRED EventStartTime => Str

A time stamp for the time to start replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

REQUIRED ReplayName => Str

The name of the replay to start.

SEE ALSO

This class forms part of Paws, documenting arguments for method StartReplay in Paws::CloudWatchEvents

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues