Class: Aws::Route53Domains::Types::DnssecSigningAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::DnssecSigningAttributes
- 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
-
#algorithm ⇒ Integer
Algorithm which was used to generate the digest from the public key.
-
#flags ⇒ Integer
Defines the type of key.
-
#public_key ⇒ String
The base64-encoded public key part of the key pair that is passed to the registry.
Instance Attribute Details
#algorithm ⇒ Integer
Algorithm which was used to generate the digest from the public key.
745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 745 class DnssecSigningAttributes < Struct.new( :algorithm, :flags, :public_key) SENSITIVE = [] include Aws::Structure end |
#flags ⇒ Integer
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.
745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 745 class DnssecSigningAttributes < Struct.new( :algorithm, :flags, :public_key) SENSITIVE = [] include Aws::Structure end |
#public_key ⇒ String
The base64-encoded public key part of the key pair that is passed to the registry.
745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 745 class DnssecSigningAttributes < Struct.new( :algorithm, :flags, :public_key) SENSITIVE = [] include Aws::Structure end |