interface CfnSenderIdMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnSenderIdMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnSenderIdMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnSenderIdMixinProps |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnSenderIdMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnSenderIdMixinProps |
Properties for CfnSenderIdPropsMixin.
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 { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const cfnSenderIdMixinProps: smsvoice_mixins.CfnSenderIdMixinProps = {
deletionProtectionEnabled: false,
isoCountryCode: 'isoCountryCode',
senderId: 'senderId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| deletion | boolean | IResolvable | By default this is set to false. |
| 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. |
| tags? | Cfn[] | An array of tags (key and value pairs) to associate with the sender ID. |
deletionProtectionEnabled?
Type:
boolean | IResolvable
(optional)
By default this is set to false.
When set to true the sender ID can't be deleted.
isoCountryCode?
Type:
string
(optional)
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
senderId?
Type:
string
(optional)
The sender ID string to request.
tags?
Type:
Cfn[]
(optional)
An array of tags (key and value pairs) to associate with the sender ID.

.NET
Go
Java
Python
TypeScript