Class: Aws::Route53Domains::Types::DnssecSigningAttributes

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#algorithmInteger

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

Returns:

  • (Integer)


755
756
757
758
759
760
761
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 755

class DnssecSigningAttributes < Struct.new(
  :algorithm,
  :flags,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end

#flagsInteger

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.

Returns:

  • (Integer)


755
756
757
758
759
760
761
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 755

class DnssecSigningAttributes < Struct.new(
  :algorithm,
  :flags,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end

#public_keyString

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

Returns:

  • (String)


755
756
757
758
759
760
761
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 755

class DnssecSigningAttributes < Struct.new(
  :algorithm,
  :flags,
  :public_key)
  SENSITIVE = []
  include Aws::Structure
end