Show / Hide Table of Contents

Class EventSubscriptionState

Inheritance
System.Object
InputArgs
ResourceArgs
EventSubscriptionState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Rds
Assembly: Pulumi.Aws.dll
Syntax
public sealed class EventSubscriptionState : ResourceArgs

Constructors

View Source

EventSubscriptionState()

Declaration
public EventSubscriptionState()

Properties

View Source

Arn

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CustomerAwsId

Declaration
public Input<string> CustomerAwsId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Enabled

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>
View Source

EventCategories

A list of event categories for a SourceType that you want to subscribe to. See http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html or run aws rds describe-event-categories.

Declaration
public InputList<string> EventCategories { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Name

The name of the DB event subscription. By default generated by this provider.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamePrefix

The name of the DB event subscription. Conflicts with name.

Declaration
public Input<string> NamePrefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SnsTopic

The SNS topic to send events to.

Declaration
public Input<string> SnsTopic { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

SourceType

The type of source that will be generating the events. Valid options are db-instance, db-security-group, db-parameter-group, db-snapshot, db-cluster or db-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>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.