/** *

A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.

*/ export interface _Aliases { /** *

The number of CNAME aliases, if any, that you want to associate with this distribution.

*/ Quantity: number; /** *

A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

*/ Items?: Array | Iterable; } export interface _UnmarshalledAliases extends _Aliases { /** *

A complex type that contains the CNAME aliases, if any, that you want to associate with this distribution.

*/ Items?: Array; }