amazonka-route53-domains-2.0: Amazon Route 53 Domains SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Route53Domains.Types.Nameserver

Description

 
Synopsis

Documentation

data Nameserver Source #

Name server includes the following elements.

See: newNameserver smart constructor.

Constructors

Nameserver' 

Fields

  • glueIps :: Maybe [Text]

    Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com.

    Constraints: The list can contain only one IPv4 and one IPv6 address.

  • name :: Text

    The fully qualified host name of the name server.

    Constraint: Maximum 255 characters

Instances

Instances details
FromJSON Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

ToJSON Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

Generic Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

Associated Types

type Rep Nameserver :: Type -> Type #

Read Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

Show Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

NFData Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

Methods

rnf :: Nameserver -> () #

Eq Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

Hashable Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

type Rep Nameserver Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.Nameserver

type Rep Nameserver = D1 ('MetaData "Nameserver" "Amazonka.Route53Domains.Types.Nameserver" "amazonka-route53-domains-2.0-6iruRSkjgLuDp958hFs0e" 'False) (C1 ('MetaCons "Nameserver'" 'PrefixI 'True) (S1 ('MetaSel ('Just "glueIps") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newNameserver Source #

Create a value of Nameserver with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:glueIps:Nameserver', nameserver_glueIps - Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com.

Constraints: The list can contain only one IPv4 and one IPv6 address.

$sel:name:Nameserver', nameserver_name - The fully qualified host name of the name server.

Constraint: Maximum 255 characters

nameserver_glueIps :: Lens' Nameserver (Maybe [Text]) Source #

Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com.

Constraints: The list can contain only one IPv4 and one IPv6 address.

nameserver_name :: Lens' Nameserver Text Source #

The fully qualified host name of the name server.

Constraint: Maximum 255 characters