@Generated(value="software.amazon.awssdk:codegen") public final class DnssecKey extends Object implements SdkPojo, Serializable, ToCopyableBuilder<DnssecKey.Builder,DnssecKey>
Information about the DNSSEC key.
You get this from your DNS provider and then give it to Route 53 (by using AssociateDelegationSignerToDomain) to pass it to the registry to establish the chain of trust.
| Modifier and Type | Class and Description |
|---|---|
static interface |
DnssecKey.Builder |
| Modifier and Type | Method and Description |
|---|---|
Integer |
algorithm()
The number of the public key’s cryptographic algorithm according to an IANA assignment.
|
static DnssecKey.Builder |
builder() |
String |
digest()
The delegation signer digest.
|
Integer |
digestType()
The number of the DS digest algorithm according to an IANA assignment.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
Integer |
flags()
Defines the type of key.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
String |
id()
An ID assigned to each DS record created by AssociateDelegationSignerToDomain.
|
Integer |
keyTag()
A numeric identification of the DNSKEY record referred to by this DS record.
|
String |
publicKey()
The base64-encoded public key part of the key pair that is passed to the registry .
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends DnssecKey.Builder> |
serializableBuilderClass() |
DnssecKey.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final Integer algorithm()
The number of the public key’s cryptographic algorithm according to an IANA assignment.
If Route 53 is your DNS service, set this to 13.
For more information about enabling DNSSEC signing, see Enabling DNSSEC signing and establishing a chain of trust.
If Route 53 is your DNS service, set this to 13.
For more information about enabling DNSSEC signing, see Enabling DNSSEC signing and establishing a chain of trust.
public final Integer 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.
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.
public final String publicKey()
The base64-encoded public key part of the key pair that is passed to the registry .
public final Integer digestType()
The number of the DS digest algorithm according to an IANA assignment.
For more information, see IANA for DNSSEC Delegation Signer (DS) Resource Record (RR) Type Digest Algorithms.
For more information, see IANA for DNSSEC Delegation Signer (DS) Resource Record (RR) Type Digest Algorithms.
public final String digest()
The delegation signer digest.
Digest is calculated from the public key provided using specified digest algorithm and this digest is the actual value returned from the registry nameservers as the value of DS records.
Digest is calculated from the public key provided using specified digest algorithm and this digest is the actual value returned from the registry nameservers as the value of DS records.
public final Integer keyTag()
A numeric identification of the DNSKEY record referred to by this DS record.
public final String id()
An ID assigned to each DS record created by AssociateDelegationSignerToDomain.
public DnssecKey.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<DnssecKey.Builder,DnssecKey>public static DnssecKey.Builder builder()
public static Class<? extends DnssecKey.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.