import type { attributes } from './attributes'; import type { CommonName } from './CommonName'; import type { MsgVpnClientProfile } from './MsgVpnClientProfile'; import type { MsgVpnQueue } from './MsgVpnQueue'; import type { MsgVpnRestDeliveryPointQueueBinding } from './MsgVpnRestDeliveryPointQueueBinding'; import type { MsgVpnRestDeliveryPointRestConsumer } from './MsgVpnRestDeliveryPointRestConsumer'; import type { Tags } from './Tags'; export declare type MsgVpnRestDeliveryPoint = { restDeliveryPointName: CommonName; clientProfile?: MsgVpnClientProfile; enabled: boolean; restConsumers: Array; queueBindings: Array; queues: Array; environments: Array; attributes?: attributes; tags?: Tags; };