/** *

A complex type that contains an optional comment about your hosted zone. If you don't want to specify a comment, omit both the HostedZoneConfig and Comment elements.

*/ export interface _HostedZoneConfig { /** *

Any comments that you want to include about the hosted zone.

*/ Comment?: string; /** *

A value that indicates whether this is a private hosted zone.

*/ PrivateZone?: boolean; } export declare type _UnmarshalledHostedZoneConfig = _HostedZoneConfig;