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.DnssecSigningAttributes

Description

 
Synopsis

Documentation

data DnssecSigningAttributes Source #

Information about a delegation signer (DS) record that was created in the registry by AssociateDelegationSignerToDomain.

See: newDnssecSigningAttributes smart constructor.

Constructors

DnssecSigningAttributes' 

Fields

  • algorithm :: Maybe Int

    Algorithm which was used to generate the digest from the public key.

  • flags :: Maybe Int

    Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available.

    If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.

  • publicKey :: Maybe Text

    The base64-encoded public key part of the key pair that is passed to the registry.

Instances

Instances details
ToJSON DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

Generic DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

Associated Types

type Rep DnssecSigningAttributes :: Type -> Type #

Read DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

Show DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

NFData DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

Methods

rnf :: DnssecSigningAttributes -> () #

Eq DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

Hashable DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

type Rep DnssecSigningAttributes Source # 
Instance details

Defined in Amazonka.Route53Domains.Types.DnssecSigningAttributes

type Rep DnssecSigningAttributes = D1 ('MetaData "DnssecSigningAttributes" "Amazonka.Route53Domains.Types.DnssecSigningAttributes" "amazonka-route53-domains-2.0-6iruRSkjgLuDp958hFs0e" 'False) (C1 ('MetaCons "DnssecSigningAttributes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "algorithm") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "flags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "publicKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDnssecSigningAttributes :: DnssecSigningAttributes Source #

Create a value of DnssecSigningAttributes 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:algorithm:DnssecSigningAttributes', dnssecSigningAttributes_algorithm - Algorithm which was used to generate the digest from the public key.

$sel:flags:DnssecSigningAttributes', dnssecSigningAttributes_flags - Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available.

If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.

$sel:publicKey:DnssecSigningAttributes', dnssecSigningAttributes_publicKey - The base64-encoded public key part of the key pair that is passed to the registry.

dnssecSigningAttributes_algorithm :: Lens' DnssecSigningAttributes (Maybe Int) Source #

Algorithm which was used to generate the digest from the public key.

dnssecSigningAttributes_flags :: Lens' DnssecSigningAttributes (Maybe Int) Source #

Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available.

If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.

dnssecSigningAttributes_publicKey :: Lens' DnssecSigningAttributes (Maybe Text) Source #

The base64-encoded public key part of the key pair that is passed to the registry.