/** *

A complex type that lists the name servers in a delegation set, as well as the CallerReference and the ID for the delegation set.

*/ export interface _DelegationSet { /** *

The ID that Amazon Route 53 assigns to a reusable delegation set.

*/ Id?: string; /** *

The value that you specified for CallerReference when you created the reusable delegation set.

*/ CallerReference?: string; /** *

A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.

*/ NameServers: Array | Iterable; } export interface _UnmarshalledDelegationSet extends _DelegationSet { /** *

A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.

*/ NameServers: Array; }