/** *

The SIP credentials used to authenticate requests to your Amazon Chime Voice Connector.

*/ export interface _Credential { /** *

The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.

*/ Username?: string; /** *

The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.

*/ Password?: string; } export declare type _UnmarshalledCredential = _Credential;