@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-02-09T02:14:33.403Z")
public interface CfnConfigurationSetEventDestinationProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ses.*; CfnConfigurationSetEventDestinationProps cfnConfigurationSetEventDestinationProps = CfnConfigurationSetEventDestinationProps.builder() .configurationSetName("configurationSetName") .eventDestination(EventDestinationProperty.builder() .matchingEventTypes(List.of("matchingEventTypes")) // the properties below are optional .cloudWatchDestination(CloudWatchDestinationProperty.builder() .dimensionConfigurations(List.of(DimensionConfigurationProperty.builder() .defaultDimensionValue("defaultDimensionValue") .dimensionName("dimensionName") .dimensionValueSource("dimensionValueSource") .build())) .build()) .enabled(false) .kinesisFirehoseDestination(KinesisFirehoseDestinationProperty.builder() .deliveryStreamArn("deliveryStreamArn") .iamRoleArn("iamRoleArn") .build()) .name("name") .snsDestination(SnsDestinationProperty.builder() .topicArn("topicArn") .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConfigurationSetEventDestinationProps.Builder
A builder for
CfnConfigurationSetEventDestinationProps |
static class |
CfnConfigurationSetEventDestinationProps.Jsii$Proxy
An implementation for
CfnConfigurationSetEventDestinationProps |
Modifier and Type | Method and Description |
---|---|
static CfnConfigurationSetEventDestinationProps.Builder |
builder() |
java.lang.String |
getConfigurationSetName()
The name of the configuration set that contains the event destination.
|
java.lang.Object |
getEventDestination()
The event destination object.
|
java.lang.String getConfigurationSetName()
java.lang.Object getEventDestination()
static CfnConfigurationSetEventDestinationProps.Builder builder()