Update Sender Id
pinpointsmsvoicev2_update_sender_id | R Documentation |
Updates the configuration of an existing sender ID¶
Description¶
Updates the configuration of an existing sender ID.
Usage¶
pinpointsmsvoicev2_update_sender_id(SenderId, IsoCountryCode,
DeletionProtectionEnabled)
Arguments¶
SenderId |
[required] The sender ID to update. |
IsoCountryCode |
[required] The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. |
DeletionProtectionEnabled |
By default this is set to false. When set to true the sender ID can't be deleted. |
Value¶
A list with the following syntax:
list(
SenderIdArn = "string",
SenderId = "string",
IsoCountryCode = "string",
MessageTypes = list(
"TRANSACTIONAL"|"PROMOTIONAL"
),
MonthlyLeasingPrice = "string",
DeletionProtectionEnabled = TRUE|FALSE,
Registered = TRUE|FALSE,
RegistrationId = "string"
)
Request syntax¶
svc$update_sender_id(
SenderId = "string",
IsoCountryCode = "string",
DeletionProtectionEnabled = TRUE|FALSE
)