CfnSenderIdMixinProps
- class aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnSenderIdMixinProps(*, deletion_protection_enabled=None, iso_country_code=None, sender_id=None, tags=None)
Bases:
objectProperties for CfnSenderIdPropsMixin.
- Parameters:
deletion_protection_enabled (
Union[bool,IResolvable,None]) – By default this is set to false. When set to true the sender ID can’t be deleted.iso_country_code (
Optional[str]) – The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.sender_id (
Optional[str]) – The sender ID string to request.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of tags (key and value pairs) to associate with the sender ID.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_smsvoice import mixins as smsvoice_mixins cfn_sender_id_mixin_props = smsvoice_mixins.CfnSenderIdMixinProps( deletion_protection_enabled=False, iso_country_code="isoCountryCode", sender_id="senderId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- deletion_protection_enabled
By default this is set to false.
When set to true the sender ID can’t be deleted.
- iso_country_code
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
- sender_id
The sender ID string to request.
- tags
An array of tags (key and value pairs) to associate with the sender ID.