cdk-amazon-chime-resources
Version:

14 lines (13 loc) • 613 B
TypeScript
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);
}