/** *
The Amazon Chime Voice Connector configuration, including outbound host name and encryption settings.
*/ export interface _VoiceConnector { /** *The Amazon Chime Voice Connector ID.
*/ VoiceConnectorId?: string; /** *The name of the Amazon Chime Voice Connector.
*/ Name?: string; /** *The outbound host name for the Amazon Chime Voice Connector.
*/ OutboundHostName?: string; /** *Designates whether encryption is required for the Amazon Chime Voice Connector.
*/ RequireEncryption?: boolean; /** *The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
*/ CreatedTimestamp?: Date | string | number; /** *The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
*/ UpdatedTimestamp?: Date | string | number; } export interface _UnmarshalledVoiceConnector extends _VoiceConnector { /** *The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
*/ CreatedTimestamp?: Date; /** *The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
*/ UpdatedTimestamp?: Date; }