@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.255Z") @Stability(value=Stable) public interface CfnConfigurationSetEventDestinationProps extends software.amazon.jsii.JsiiSerializable
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();
| 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() |
String |
getConfigurationSetName()
The name of the configuration set that contains the event destination that you want to modify.
|
default Object |
getEventDestination()
An object that defines the event destination.
|
String |
getEventDestinationName()
The name of the event destination that you want to modify.
|
@Stability(value=Stable) @NotNull String getConfigurationSetName()
@Stability(value=Stable) @NotNull String getEventDestinationName()
@Stability(value=Stable) @Nullable default Object getEventDestination()
@Stability(value=Stable) static CfnConfigurationSetEventDestinationProps.Builder builder()
Copyright © 2022. All rights reserved.