Interface CfnSenderIdProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSenderIdProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-25T11:29:17.657Z")
@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 class
A builder forCfnSenderIdProps
static final class
An implementation forCfnSenderIdProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSenderIdProps.Builder
builder()
default Object
By 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.
- See Also:
-
getTags
An array of tags (key and value pairs) to associate with the sender ID.- See Also:
-
builder
- Returns:
- a
CfnSenderIdProps.Builder
ofCfnSenderIdProps
-