Class EventSubscriptionArgs
Inherited Members
Namespace: Pulumi.Aws.RedShift
Assembly: Pulumi.Aws.dll
Syntax
public sealed class EventSubscriptionArgs : ResourceArgs
Constructors
View SourceEventSubscriptionArgs()
Declaration
public EventSubscriptionArgs()
Properties
View SourceEnabled
A boolean flag to enable/disable the subscription. Defaults to true.
Declaration
public Input<bool> Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
EventCategories
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.
Declaration
public InputList<string> EventCategories { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
Name
The name of the Redshift event subscription.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Severity
The event severity to be published by the notification subscription. Valid options are INFO or ERROR.
Declaration
public Input<string> Severity { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SnsTopicArn
The ARN of the SNS topic to send events to.
Declaration
public Input<string> SnsTopicArn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SourceIds
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_type must also be specified.
Declaration
public InputList<string> SourceIds { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
SourceType
The type of source that will be generating the events. Valid options are cluster, cluster-parameter-group, cluster-security-group, or cluster-snapshot. If not set, all sources will be subscribed to.
Declaration
public Input<string> SourceType { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Tags
A map of tags to assign to the resource.
Declaration
public InputMap<object> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |