AWS Fundamentals Logo
AWS Fundamentals
AWS::Redshift::EventSubscription

Redshift EventSubscription

The `AWS::Redshift::EventSubscription` resource creates an Amazon Redshift Event Subscription.

Properties

8 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
SubscriptionName
string
RequiredCreate-only
Enabled
boolean
EventCategories
Array<string>
Severity
string
SnsTopicArn
string
SourceIds
Array<string>
SourceType
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
CustomerAwsIdstringThe AWS account associated with the Amazon Redshift event notification subscription.
CustSubscriptionIdstringThe name of the Amazon Redshift event notification subscription.
EventCategoriesListArray<string>The list of Amazon Redshift event categories specified in the event notification subscription.
SourceIdsListArray<string>A list of the sources that publish events to the Amazon Redshift event notification subscription.
StatusstringThe status of the Amazon Redshift event notification subscription.
SubscriptionCreationTimestringThe date and time the Amazon Redshift event notification subscription was created.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Redshift::EventSubscription

Resources:
  MyResource:
    Type: AWS::Redshift::EventSubscription
    Properties:
      SubscriptionName: "my-subscriptionname"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

read

redshift:DescribeEventSubscriptionsredshift:DescribeTags

create

redshift:CreateEventSubscriptionredshift:CreateTagsredshift:DescribeTagsredshift:DescribeEventSubscriptions

update

redshift:ModifyEventSubscriptionredshift:CreateTagsredshift:DescribeTagsredshift:DescribeEventSubscriptionsredshift:DeleteTags

list

redshift:DescribeTagsredshift:DescribeEventSubscriptions

delete

redshift:DescribeEventSubscriptionsredshift:DeleteEventSubscriptionredshift:DescribeTagsredshift:DeleteTags

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

ServiceRedshift
Properties14
Required1
TaggingSupported
Primary IDSubscriptionName

Supported Operations

ReadCreateUpdateListDelete

Immutable After Creation

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

SubscriptionName

External Links