interface PhoneNumberReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_smsvoice.PhoneNumberReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#PhoneNumberReference |
Java | software.amazon.awscdk.services.smsvoice.PhoneNumberReference |
Python | aws_cdk.aws_smsvoice.PhoneNumberReference |
TypeScript | aws-cdk-lib » aws_smsvoice » PhoneNumberReference |
A reference to a PhoneNumber resource.
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 phoneNumberReference: smsvoice.PhoneNumberReference = {
phoneNumberArn: 'phoneNumberArn',
phoneNumberId: 'phoneNumberId',
};
Properties
| Name | Type | Description |
|---|---|---|
| phone | string | The ARN of the PhoneNumber resource. |
| phone | string | The PhoneNumberId of the PhoneNumber resource. |
phoneNumberArn
Type:
string
The ARN of the PhoneNumber resource.
phoneNumberId
Type:
string
The PhoneNumberId of the PhoneNumber resource.

.NET
Go
Java
Python
TypeScript