PhoneNumberReference

class aws_cdk.aws_smsvoice.PhoneNumberReference(*, phone_number_arn, phone_number_id)

Bases: object

A reference to a PhoneNumber resource.

Parameters:
  • phone_number_arn (str) – The ARN of the PhoneNumber resource.

  • phone_number_id (str) – The PhoneNumberId of the PhoneNumber 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

phone_number_reference = smsvoice.PhoneNumberReference(
    phone_number_arn="phoneNumberArn",
    phone_number_id="phoneNumberId"
)

Attributes

phone_number_arn

The ARN of the PhoneNumber resource.

phone_number_id

The PhoneNumberId of the PhoneNumber resource.