interface CfnSenderIdProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_smsvoice.CfnSenderIdProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnSenderIdProps |
Java | software.amazon.awscdk.services.smsvoice.CfnSenderIdProps |
Python | aws_cdk.aws_smsvoice.CfnSenderIdProps |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnSenderIdProps |
Properties for defining a CfnSenderId.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_smsvoice as smsvoice } from 'aws-cdk-lib';
const cfnSenderIdProps: smsvoice.CfnSenderIdProps = {
isoCountryCode: 'isoCountryCode',
senderId: 'senderId',
// the properties below are optional
deletionProtectionEnabled: false,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| iso | string | The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. |
| sender | string | The sender ID string to request. |
| deletion | boolean | IResolvable | By default this is set to false. |
| tags? | Cfn[] | An array of tags (key and value pairs) to associate with the sender ID. |
isoCountryCode
Type:
string
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
senderId
Type:
string
The sender ID string to request.
deletionProtectionEnabled?
Type:
boolean | IResolvable
(optional)
By default this is set to false.
When set to true the sender ID can't be deleted.
tags?
Type:
Cfn[]
(optional)
An array of tags (key and value pairs) to associate with the sender ID.

.NET
Go
Java
Python
TypeScript