Interface CfnConfigurationSetProps

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-25T11:29:17.629Z") @Stability(Stable) public interface CfnConfigurationSetProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnConfigurationSet.

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.smsvoice.*;
 CfnConfigurationSetProps cfnConfigurationSetProps = CfnConfigurationSetProps.builder()
         .configurationSetName("configurationSetName")
         .defaultSenderId("defaultSenderId")
         .eventDestinations(List.of(EventDestinationProperty.builder()
                 .enabled(false)
                 .eventDestinationName("eventDestinationName")
                 .matchingEventTypes(List.of("matchingEventTypes"))
                 // the properties below are optional
                 .cloudWatchLogsDestination(CloudWatchLogsDestinationProperty.builder()
                         .iamRoleArn("iamRoleArn")
                         .logGroupArn("logGroupArn")
                         .build())
                 .kinesisFirehoseDestination(KinesisFirehoseDestinationProperty.builder()
                         .deliveryStreamArn("deliveryStreamArn")
                         .iamRoleArn("iamRoleArn")
                         .build())
                 .snsDestination(SnsDestinationProperty.builder()
                         .topicArn("topicArn")
                         .build())
                 .build()))
         .messageFeedbackEnabled(false)
         .protectConfigurationId("protectConfigurationId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: