import type { attributes } from './attributes'; import type { CommonName } from './CommonName'; import type { Tags } from './Tags'; export declare type MsgVpnClientProfile = { clientProfileName: CommonName; allowGuaranteedMsgSendEnabled: boolean; allowTransactedSessionsEnabled: boolean; allowGuaranteedMsgReceiveEnabled: boolean; allowGuaranteedEndpointCreateEnabled: boolean; compressionEnabled: boolean; attributes?: attributes; tags?: Tags; environments: Array; };