Show / Hide Table of Contents

Class ConfigurationSetEventDestinationOptions

Options for a configuration set event destination.

Inheritance
object
ConfigurationSetEventDestinationOptions
Implements
IConfigurationSetEventDestinationOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ConfigurationSetEventDestinationOptions : IConfigurationSetEventDestinationOptions
Syntax (vb)
Public Class ConfigurationSetEventDestinationOptions Implements IConfigurationSetEventDestinationOptions
Remarks

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.Events;

            ConfigurationSet myConfigurationSet;


            var bus = EventBus.FromEventBusName(this, "EventBus", "default");

            myConfigurationSet.AddEventDestination("ToEventBus", new ConfigurationSetEventDestinationOptions {
                Destination = EventDestination.EventBus(bus)
            });

Synopsis

Constructors

ConfigurationSetEventDestinationOptions()

Options for a configuration set event destination.

Properties

ConfigurationSetEventDestinationName

A name for the configuration set event destination.

Destination

The event destination.

Enabled

Whether Amazon SES publishes events to this destination.

Events

The type of email sending events to publish to the event destination.

Constructors

ConfigurationSetEventDestinationOptions()

Options for a configuration set event destination.

public ConfigurationSetEventDestinationOptions()
Remarks

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.Events;

            ConfigurationSet myConfigurationSet;


            var bus = EventBus.FromEventBusName(this, "EventBus", "default");

            myConfigurationSet.AddEventDestination("ToEventBus", new ConfigurationSetEventDestinationOptions {
                Destination = EventDestination.EventBus(bus)
            });

Properties

ConfigurationSetEventDestinationName

A name for the configuration set event destination.

public string? ConfigurationSetEventDestinationName { get; set; }
Property Value

string

Remarks

Default: - a CloudFormation generated name

Destination

The event destination.

public EventDestination Destination { get; set; }
Property Value

EventDestination

Remarks

ExampleMetadata: infused

Enabled

Whether Amazon SES publishes events to this destination.

public bool? Enabled { get; set; }
Property Value

bool?

Remarks

Default: true

Events

The type of email sending events to publish to the event destination.

public EmailSendingEvent[]? Events { get; set; }
Property Value

EmailSendingEvent[]

Remarks

Default: - send all event types

Implements

IConfigurationSetEventDestinationOptions
Back to top Generated by DocFX