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:05.495Z")
@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.ses.*;
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)
.eventBridgeDestination(EventBridgeDestinationProperty.builder()
.eventBusArn("eventBusArn")
.build())
.kinesisFirehoseDestination(KinesisFirehoseDestinationProperty.builder()
.deliveryStreamArn("deliveryStreamArn")
.iamRoleArn("iamRoleArn")
.build())
.matchingEventTypes(List.of("matchingEventTypes"))
.name("name")
.snsDestination(SnsDestinationProperty.builder()
.topicArn("topicArn")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationSetEventDestinationMixinPropsstatic final classAn implementation forCfnConfigurationSetEventDestinationMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigurationSetName
The name of the configuration set that contains the event destination.Returns union: either
StringorIConfigurationSetRef- See Also:
-
getEventDestination
An object that defines the event destination.Returns union: either
IResolvableorCfnConfigurationSetEventDestinationPropsMixin.EventDestinationProperty- See Also:
-
builder
-