Interface CfnSenderIdProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSenderIdProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:14.612Z")
@Stability(Stable)
public interface CfnSenderIdProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSenderId.
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.*;
CfnSenderIdProps cfnSenderIdProps = CfnSenderIdProps.builder()
.isoCountryCode("isoCountryCode")
.senderId("senderId")
// the properties below are optional
.deletionProtectionEnabled(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSenderIdPropsstatic final classAn implementation forCfnSenderIdProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSenderIdProps.Builderbuilder()default ObjectBy default this is set to false.The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.The 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
-
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:
-
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:
-
getTags
An array of tags (key and value pairs) to associate with the sender ID.- See Also:
-
builder
- Returns:
- a
CfnSenderIdProps.BuilderofCfnSenderIdProps
-