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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigurationSetProps
static final class
An implementation forCfnConfigurationSetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the ConfigurationSet.default String
The default sender ID used by the ConfigurationSet.default Object
An array of EventDestination objects that describe any events to log and where to log them.default Object
Set to true to enable feedback for the message.default String
The unique identifier for the protect configuration.getTags()
An array of key and value pair tags that's associated with the new configuration set.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigurationSetName
The name of the ConfigurationSet.- See Also:
-
getDefaultSenderId
The default sender ID used by the ConfigurationSet.- See Also:
-
getEventDestinations
An array of EventDestination objects that describe any events to log and where to log them.- See Also:
-
getMessageFeedbackEnabled
Set to true to enable feedback for the message.- See Also:
-
getProtectConfigurationId
The unique identifier for the protect configuration.- See Also:
-
getTags
An array of key and value pair tags that's associated with the new configuration set.- See Also:
-
builder
- Returns:
- a
CfnConfigurationSetProps.Builder
ofCfnConfigurationSetProps
-