aws.redshift.EventSubscription
Explore with Pulumi AI
Provides a Redshift event subscription resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const _default = new aws.redshift.Cluster("default", {
    clusterIdentifier: "default",
    databaseName: "default",
});
const defaultTopic = new aws.sns.Topic("default", {name: "redshift-events"});
const defaultEventSubscription = new aws.redshift.EventSubscription("default", {
    name: "redshift-event-sub",
    snsTopicArn: defaultTopic.arn,
    sourceType: "cluster",
    sourceIds: [_default.id],
    severity: "INFO",
    eventCategories: [
        "configuration",
        "management",
        "monitoring",
        "security",
    ],
    tags: {
        Name: "default",
    },
});
import pulumi
import pulumi_aws as aws
default = aws.redshift.Cluster("default",
    cluster_identifier="default",
    database_name="default")
default_topic = aws.sns.Topic("default", name="redshift-events")
default_event_subscription = aws.redshift.EventSubscription("default",
    name="redshift-event-sub",
    sns_topic_arn=default_topic.arn,
    source_type="cluster",
    source_ids=[default.id],
    severity="INFO",
    event_categories=[
        "configuration",
        "management",
        "monitoring",
        "security",
    ],
    tags={
        "Name": "default",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/redshift"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sns"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := redshift.NewCluster(ctx, "default", &redshift.ClusterArgs{
			ClusterIdentifier: pulumi.String("default"),
			DatabaseName:      pulumi.String("default"),
		})
		if err != nil {
			return err
		}
		defaultTopic, err := sns.NewTopic(ctx, "default", &sns.TopicArgs{
			Name: pulumi.String("redshift-events"),
		})
		if err != nil {
			return err
		}
		_, err = redshift.NewEventSubscription(ctx, "default", &redshift.EventSubscriptionArgs{
			Name:        pulumi.String("redshift-event-sub"),
			SnsTopicArn: defaultTopic.Arn,
			SourceType:  pulumi.String("cluster"),
			SourceIds: pulumi.StringArray{
				_default.ID(),
			},
			Severity: pulumi.String("INFO"),
			EventCategories: pulumi.StringArray{
				pulumi.String("configuration"),
				pulumi.String("management"),
				pulumi.String("monitoring"),
				pulumi.String("security"),
			},
			Tags: pulumi.StringMap{
				"Name": pulumi.String("default"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var @default = new Aws.RedShift.Cluster("default", new()
    {
        ClusterIdentifier = "default",
        DatabaseName = "default",
    });
    var defaultTopic = new Aws.Sns.Topic("default", new()
    {
        Name = "redshift-events",
    });
    var defaultEventSubscription = new Aws.RedShift.EventSubscription("default", new()
    {
        Name = "redshift-event-sub",
        SnsTopicArn = defaultTopic.Arn,
        SourceType = "cluster",
        SourceIds = new[]
        {
            @default.Id,
        },
        Severity = "INFO",
        EventCategories = new[]
        {
            "configuration",
            "management",
            "monitoring",
            "security",
        },
        Tags = 
        {
            { "Name", "default" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshift.Cluster;
import com.pulumi.aws.redshift.ClusterArgs;
import com.pulumi.aws.sns.Topic;
import com.pulumi.aws.sns.TopicArgs;
import com.pulumi.aws.redshift.EventSubscription;
import com.pulumi.aws.redshift.EventSubscriptionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var default_ = new Cluster("default", ClusterArgs.builder()
            .clusterIdentifier("default")
            .databaseName("default")
            .build());
        var defaultTopic = new Topic("defaultTopic", TopicArgs.builder()
            .name("redshift-events")
            .build());
        var defaultEventSubscription = new EventSubscription("defaultEventSubscription", EventSubscriptionArgs.builder()
            .name("redshift-event-sub")
            .snsTopicArn(defaultTopic.arn())
            .sourceType("cluster")
            .sourceIds(default_.id())
            .severity("INFO")
            .eventCategories(            
                "configuration",
                "management",
                "monitoring",
                "security")
            .tags(Map.of("Name", "default"))
            .build());
    }
}
resources:
  default:
    type: aws:redshift:Cluster
    properties:
      clusterIdentifier: default
      databaseName: default
  defaultTopic:
    type: aws:sns:Topic
    name: default
    properties:
      name: redshift-events
  defaultEventSubscription:
    type: aws:redshift:EventSubscription
    name: default
    properties:
      name: redshift-event-sub
      snsTopicArn: ${defaultTopic.arn}
      sourceType: cluster
      sourceIds:
        - ${default.id}
      severity: INFO
      eventCategories:
        - configuration
        - management
        - monitoring
        - security
      tags:
        Name: default
Create EventSubscription Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EventSubscription(name: string, args: EventSubscriptionArgs, opts?: CustomResourceOptions);@overload
def EventSubscription(resource_name: str,
                      args: EventSubscriptionArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def EventSubscription(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      sns_topic_arn: Optional[str] = None,
                      enabled: Optional[bool] = None,
                      event_categories: Optional[Sequence[str]] = None,
                      name: Optional[str] = None,
                      severity: Optional[str] = None,
                      source_ids: Optional[Sequence[str]] = None,
                      source_type: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None)func NewEventSubscription(ctx *Context, name string, args EventSubscriptionArgs, opts ...ResourceOption) (*EventSubscription, error)public EventSubscription(string name, EventSubscriptionArgs args, CustomResourceOptions? opts = null)
public EventSubscription(String name, EventSubscriptionArgs args)
public EventSubscription(String name, EventSubscriptionArgs args, CustomResourceOptions options)
type: aws:redshift:EventSubscription
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EventSubscriptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EventSubscriptionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EventSubscriptionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EventSubscriptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EventSubscriptionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleeventSubscriptionResourceResourceFromRedshifteventSubscription = new Aws.RedShift.EventSubscription("exampleeventSubscriptionResourceResourceFromRedshifteventSubscription", new()
{
    SnsTopicArn = "string",
    Enabled = false,
    EventCategories = new[]
    {
        "string",
    },
    Name = "string",
    Severity = "string",
    SourceIds = new[]
    {
        "string",
    },
    SourceType = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := redshift.NewEventSubscription(ctx, "exampleeventSubscriptionResourceResourceFromRedshifteventSubscription", &redshift.EventSubscriptionArgs{
	SnsTopicArn: pulumi.String("string"),
	Enabled:     pulumi.Bool(false),
	EventCategories: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:     pulumi.String("string"),
	Severity: pulumi.String("string"),
	SourceIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	SourceType: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var exampleeventSubscriptionResourceResourceFromRedshifteventSubscription = new EventSubscription("exampleeventSubscriptionResourceResourceFromRedshifteventSubscription", EventSubscriptionArgs.builder()
    .snsTopicArn("string")
    .enabled(false)
    .eventCategories("string")
    .name("string")
    .severity("string")
    .sourceIds("string")
    .sourceType("string")
    .tags(Map.of("string", "string"))
    .build());
exampleevent_subscription_resource_resource_from_redshiftevent_subscription = aws.redshift.EventSubscription("exampleeventSubscriptionResourceResourceFromRedshifteventSubscription",
    sns_topic_arn="string",
    enabled=False,
    event_categories=["string"],
    name="string",
    severity="string",
    source_ids=["string"],
    source_type="string",
    tags={
        "string": "string",
    })
const exampleeventSubscriptionResourceResourceFromRedshifteventSubscription = new aws.redshift.EventSubscription("exampleeventSubscriptionResourceResourceFromRedshifteventSubscription", {
    snsTopicArn: "string",
    enabled: false,
    eventCategories: ["string"],
    name: "string",
    severity: "string",
    sourceIds: ["string"],
    sourceType: "string",
    tags: {
        string: "string",
    },
});
type: aws:redshift:EventSubscription
properties:
    enabled: false
    eventCategories:
        - string
    name: string
    severity: string
    snsTopicArn: string
    sourceIds:
        - string
    sourceType: string
    tags:
        string: string
EventSubscription Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EventSubscription resource accepts the following input properties:
- SnsTopic stringArn 
- The ARN of the SNS topic to send events to.
- Enabled bool
- A boolean flag to enable/disable the subscription. Defaults to true.
- EventCategories List<string>
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- Name string
- The name of the Redshift event subscription.
- Severity string
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- SourceIds List<string>
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- SourceType string
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- SnsTopic stringArn 
- The ARN of the SNS topic to send events to.
- Enabled bool
- A boolean flag to enable/disable the subscription. Defaults to true.
- EventCategories []string
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- Name string
- The name of the Redshift event subscription.
- Severity string
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- SourceIds []string
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- SourceType string
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- snsTopic StringArn 
- The ARN of the SNS topic to send events to.
- enabled Boolean
- A boolean flag to enable/disable the subscription. Defaults to true.
- eventCategories List<String>
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name String
- The name of the Redshift event subscription.
- severity String
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- sourceIds List<String>
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- sourceType String
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- snsTopic stringArn 
- The ARN of the SNS topic to send events to.
- enabled boolean
- A boolean flag to enable/disable the subscription. Defaults to true.
- eventCategories string[]
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name string
- The name of the Redshift event subscription.
- severity string
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- sourceIds string[]
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- sourceType string
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- sns_topic_ strarn 
- The ARN of the SNS topic to send events to.
- enabled bool
- A boolean flag to enable/disable the subscription. Defaults to true.
- event_categories Sequence[str]
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name str
- The name of the Redshift event subscription.
- severity str
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- source_ids Sequence[str]
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- source_type str
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- snsTopic StringArn 
- The ARN of the SNS topic to send events to.
- enabled Boolean
- A boolean flag to enable/disable the subscription. Defaults to true.
- eventCategories List<String>
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name String
- The name of the Redshift event subscription.
- severity String
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- sourceIds List<String>
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- sourceType String
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the EventSubscription resource produces the following output properties:
- Arn string
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- CustomerAws stringId 
- The AWS customer account associated with the Redshift event notification subscription
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- CustomerAws stringId 
- The AWS customer account associated with the Redshift event notification subscription
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customerAws StringId 
- The AWS customer account associated with the Redshift event notification subscription
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customerAws stringId 
- The AWS customer account associated with the Redshift event notification subscription
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customer_aws_ strid 
- The AWS customer account associated with the Redshift event notification subscription
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customerAws StringId 
- The AWS customer account associated with the Redshift event notification subscription
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing EventSubscription Resource
Get an existing EventSubscription resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EventSubscriptionState, opts?: CustomResourceOptions): EventSubscription@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        customer_aws_id: Optional[str] = None,
        enabled: Optional[bool] = None,
        event_categories: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        severity: Optional[str] = None,
        sns_topic_arn: Optional[str] = None,
        source_ids: Optional[Sequence[str]] = None,
        source_type: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> EventSubscriptionfunc GetEventSubscription(ctx *Context, name string, id IDInput, state *EventSubscriptionState, opts ...ResourceOption) (*EventSubscription, error)public static EventSubscription Get(string name, Input<string> id, EventSubscriptionState? state, CustomResourceOptions? opts = null)public static EventSubscription get(String name, Output<String> id, EventSubscriptionState state, CustomResourceOptions options)resources:  _:    type: aws:redshift:EventSubscription    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- CustomerAws stringId 
- The AWS customer account associated with the Redshift event notification subscription
- Enabled bool
- A boolean flag to enable/disable the subscription. Defaults to true.
- EventCategories List<string>
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- Name string
- The name of the Redshift event subscription.
- Severity string
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- SnsTopic stringArn 
- The ARN of the SNS topic to send events to.
- SourceIds List<string>
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- SourceType string
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- Status string
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- CustomerAws stringId 
- The AWS customer account associated with the Redshift event notification subscription
- Enabled bool
- A boolean flag to enable/disable the subscription. Defaults to true.
- EventCategories []string
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- Name string
- The name of the Redshift event subscription.
- Severity string
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- SnsTopic stringArn 
- The ARN of the SNS topic to send events to.
- SourceIds []string
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- SourceType string
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- Status string
- map[string]string
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customerAws StringId 
- The AWS customer account associated with the Redshift event notification subscription
- enabled Boolean
- A boolean flag to enable/disable the subscription. Defaults to true.
- eventCategories List<String>
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name String
- The name of the Redshift event subscription.
- severity String
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- snsTopic StringArn 
- The ARN of the SNS topic to send events to.
- sourceIds List<String>
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- sourceType String
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- status String
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customerAws stringId 
- The AWS customer account associated with the Redshift event notification subscription
- enabled boolean
- A boolean flag to enable/disable the subscription. Defaults to true.
- eventCategories string[]
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name string
- The name of the Redshift event subscription.
- severity string
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- snsTopic stringArn 
- The ARN of the SNS topic to send events to.
- sourceIds string[]
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- sourceType string
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- status string
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customer_aws_ strid 
- The AWS customer account associated with the Redshift event notification subscription
- enabled bool
- A boolean flag to enable/disable the subscription. Defaults to true.
- event_categories Sequence[str]
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name str
- The name of the Redshift event subscription.
- severity str
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- sns_topic_ strarn 
- The ARN of the SNS topic to send events to.
- source_ids Sequence[str]
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- source_type str
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- status str
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- Amazon Resource Name (ARN) of the Redshift event notification subscription
- customerAws StringId 
- The AWS customer account associated with the Redshift event notification subscription
- enabled Boolean
- A boolean flag to enable/disable the subscription. Defaults to true.
- eventCategories List<String>
- A list of event categories for a SourceType that you want to subscribe to. See https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html or run aws redshift describe-event-categories.
- name String
- The name of the Redshift event subscription.
- severity String
- The event severity to be published by the notification subscription. Valid options are INFOorERROR. Default value ofINFO.
- snsTopic StringArn 
- The ARN of the SNS topic to send events to.
- sourceIds List<String>
- A list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. If specified, a source_typemust also be specified.
- sourceType String
- The type of source that will be generating the events. Valid options are cluster,cluster-parameter-group,cluster-security-group,cluster-snapshot, orscheduled-action. If not set, all sources will be subscribed to.
- status String
- Map<String>
- A map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Import
Using pulumi import, import Redshift Event Subscriptions using the name. For example:
$ pulumi import aws:redshift/eventSubscription:EventSubscription default redshift-event-sub
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.