Interface CfnConfigurationSetEventDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetEventDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:43.249Z")
@Stability(Stable)
public interface CfnConfigurationSetEventDestinationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfigurationSetEventDestination.
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.pinpointemail.*;
CfnConfigurationSetEventDestinationProps cfnConfigurationSetEventDestinationProps = CfnConfigurationSetEventDestinationProps.builder()
.configurationSetName("configurationSetName")
.eventDestinationName("eventDestinationName")
// the properties below are optional
.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())
.pinpointDestination(PinpointDestinationProperty.builder()
.applicationArn("applicationArn")
.build())
.snsDestination(SnsDestinationProperty.builder()
.topicArn("topicArn")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationSetEventDestinationPropsstatic final classAn implementation forCfnConfigurationSetEventDestinationProps -
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 that you want to modify.- See Also:
-
getEventDestinationName
The name of the event destination that you want to modify.- See Also:
-
getEventDestination
An object that defines the event destination.Returns union: either
IResolvableorCfnConfigurationSetEventDestination.EventDestinationProperty- See Also:
-
builder
-