Interface CfnConfigurationSetEventDestinationMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationSetEventDestinationMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:02.332Z") @Stability(Stable) public interface CfnConfigurationSetEventDestinationMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnConfigurationSetEventDestinationPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.pinpointemail.*;
 CfnConfigurationSetEventDestinationMixinProps cfnConfigurationSetEventDestinationMixinProps = CfnConfigurationSetEventDestinationMixinProps.builder()
         .configurationSetName("configurationSetName")
         .eventDestination(EventDestinationProperty.builder()
                 .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())
                 .matchingEventTypes(List.of("matchingEventTypes"))
                 .pinpointDestination(PinpointDestinationProperty.builder()
                         .applicationArn("applicationArn")
                         .build())
                 .snsDestination(SnsDestinationProperty.builder()
                         .topicArn("topicArn")
                         .build())
                 .build())
         .eventDestinationName("eventDestinationName")
         .build();
 

See Also: