SenderIdReference

class aws_cdk.aws_smsvoice.SenderIdReference(*, iso_country_code, sender_id, sender_id_arn)

Bases: object

A reference to a SenderId resource.

Parameters:
  • iso_country_code (str) – The IsoCountryCode of the SenderId resource.

  • sender_id (str) – The SenderId of the SenderId resource.

  • sender_id_arn (str) – The ARN of the SenderId resource.

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 import aws_smsvoice as smsvoice

sender_id_reference = smsvoice.SenderIdReference(
    iso_country_code="isoCountryCode",
    sender_id="senderId",
    sender_id_arn="senderIdArn"
)

Attributes

iso_country_code

The IsoCountryCode of the SenderId resource.

sender_id

The SenderId of the SenderId resource.

sender_id_arn

The ARN of the SenderId resource.