AWS Fundamentals Logo
AWS Fundamentals
AWS::Events::Replay

Events Replay

An EventBridge Replay replays archived events from an archive to an event bus.

Properties

5 configurable properties. 5 required. Click a row to see details.

Filter:
PropertyTypeFlags
Destination
object
RequiredCreate-only
EventEndTime
string
RequiredCreate-only
EventSourceArn
string
RequiredCreate-only
EventStartTime
string
RequiredCreate-only
ReplayName
string
RequiredCreate-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ReplayArnstringThe ARN of the replay.
ReplayStartTimestringA time stamp for the time that the replay started.
StatestringThe current state of the replay.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Events::Replay

Resources:
  MyResource:
    Type: AWS::Events::Replay
    Properties:
      ReplayName: "my-replayname"
      EventSourceArn: "arn:aws:service:region:account:resource"
      EventStartTime: "value"
      EventEndTime: "value"
      Destination: {}

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

read

events:DescribeReplay

list

events:ListReplays

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceEvents
Properties8
Required5
TaggingNot supported
Primary IDReplayArn

Supported Operations

ReadList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DestinationEventEndTimeEventSourceArnEventStartTimeReplayName

External Links