UNPKG

cdk-amazon-chime-resources

Version:

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

18 lines (17 loc) 546 B
import { SipRuleTriggerType } from '@aws-sdk/client-chime-sdk-voice'; export interface CreateSIPRuleProps { name?: string; triggerType?: SipRuleTriggerType; triggerValue?: string; targetApplications?: [ { region: string; priority: string; sipMediaApplicationId: string; } ]; } export declare const CreateSIPRule: (uid: string, props: CreateSIPRuleProps) => Promise<{ sipRuleId: string | undefined; }>; export declare const DeleteSIPRule: (uid: string) => Promise<void>;