Interface CfnConfigurationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:14.596Z")
@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 classA builder forCfnConfigurationSetPropsstatic final classAn implementation forCfnConfigurationSetProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the ConfigurationSet.default StringThe default sender ID used by the ConfigurationSet.default ObjectAn array of EventDestination objects that describe any events to log and where to log them.default ObjectSet to true to enable feedback for the message.default StringThe 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnConfigurationSet.EventDestinationProperty>- See Also:
-
getMessageFeedbackEnabled
Set to true to enable feedback for the message.Returns union: either
BooleanorIResolvable- 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.BuilderofCfnConfigurationSetProps
-