Interface CfnSenderIdMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSenderIdMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:19.658Z")
@Stability(Stable)
public interface CfnSenderIdMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSenderIdPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.smsvoice.*;
CfnSenderIdMixinProps cfnSenderIdMixinProps = CfnSenderIdMixinProps.builder()
.deletionProtectionEnabled(false)
.isoCountryCode("isoCountryCode")
.senderId("senderId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSenderIdMixinPropsstatic final classAn implementation forCfnSenderIdMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectBy default this is set to false.default StringThe two-character code, in ISO 3166-1 alpha-2 format, for the country or region.default StringThe sender ID string to request.getTags()An array of tags (key and value pairs) to associate with the sender ID.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeletionProtectionEnabled
By default this is set to false.When set to true the sender ID can't be deleted.
Returns union: either
BooleanorIResolvable- See Also:
-
getIsoCountryCode
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.- See Also:
-
getSenderId
The sender ID string to request.- See Also:
-
getTags
An array of tags (key and value pairs) to associate with the sender ID.- See Also:
-
builder
- Returns:
- a
CfnSenderIdMixinProps.BuilderofCfnSenderIdMixinProps
-