import type { ACLAction } from './ACLAction'; import type { attributes } from './attributes'; import type { CommonName } from './CommonName'; import type { MsgVpnAclProfileClientConnectException } from './MsgVpnAclProfileClientConnectException'; import type { MsgVpnAclProfilePublishException } from './MsgVpnAclProfilePublishException'; import type { MsgVpnAclProfileSubscribeException } from './MsgVpnAclProfileSubscribeException'; import type { Tags } from './Tags'; export declare type MsgVpnAclProfile = { aclProfileName: CommonName; clientConnectDefaultAction: ACLAction; publishTopicDefaultAction: ACLAction; subscribeTopicDefaultAction: ACLAction; clientConnectExceptions?: Array; publishExceptions?: Array; subscribeExceptions?: Array; attributes?: attributes; tags?: Tags; environments: Array; };