Class: Aws::Route53::Types::DeleteKeySigningKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::DeleteKeySigningKeyRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Note:
When making an API call, you may pass DeleteKeySigningKeyRequest data as a hash:
{
hosted_zone_id: "ResourceId", # required
name: "SigningKeyName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hosted_zone_id ⇒ String
A unique string used to identify a hosted zone.
-
#name ⇒ String
A string used to identify a key-signing key (KSK).
Instance Attribute Details
#hosted_zone_id ⇒ String
A unique string used to identify a hosted zone.
2407 2408 2409 2410 2411 2412 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 2407 class DeleteKeySigningKeyRequest < Struct.new( :hosted_zone_id, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A string used to identify a key-signing key (KSK).
2407 2408 2409 2410 2411 2412 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 2407 class DeleteKeySigningKeyRequest < Struct.new( :hosted_zone_id, :name) SENSITIVE = [] include Aws::Structure end |