UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

14 lines (13 loc) 613 B
import { CustomResource, ResourceProps } from 'aws-cdk-lib'; import { Construct } from 'constructs'; export interface PSTNResourceProps extends ResourceProps { readonly properties: { [propname: string]: any; }; readonly resourceType: 'PhoneNumber' | 'VoiceConnector' | 'SMA' | 'SMALogging' | 'SMAAlexaSkill' | 'SMARule' | 'PhoneAssociation' | 'VoiceProfileDomain' | 'PhoneAssociation'; readonly uid: string; } export declare class PSTNResources extends Construct { readonly pstnCustomResource: CustomResource; constructor(scope: Construct, id: string, props: PSTNResourceProps); }