Class: Aws::Route53::Types::DNSSECStatus
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::DNSSECStatus
 
 
- Defined in:
 - gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
 
Overview
A string representing the status of DNSSEC signing.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #serve_signature  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A string that represents the current hosted zone signing status.
 - 
  
    
      #status_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status message provided for the following DNSSEC signing status:
INTERNAL_FAILURE. 
Instance Attribute Details
#serve_signature ⇒ String
A string that represents the current hosted zone signing status.
Status can have one of the following values:
- SIGNING
 DNSSEC signing is enabled for the hosted zone.
- NOT_SIGNING
 DNSSEC signing is not enabled for the hosted zone.
- DELETING
 DNSSEC signing is in the process of being removed for the hosted zone.
- ACTION_NEEDED
 There is a problem with signing in the hosted zone that requires you to take action to resolve. For example, the customer managed key might have been deleted, or the permissions for the customer managed key might have been changed.
- INTERNAL_FAILURE
 There was an error during a request. Before you can continue to work with DNSSEC signing, including with key-signing keys (KSKs), you must correct the problem by enabling or disabling DNSSEC signing for the hosted zone.
      1886 1887 1888 1889 1890 1891  | 
    
      # File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1886 class DNSSECStatus < Struct.new( :serve_signature, :status_message) SENSITIVE = [] include Aws::Structure end  | 
  
#status_message ⇒ String
The status message provided for the following DNSSEC signing status:
INTERNAL_FAILURE. The status message includes information about
what the problem might be and steps that you can take to correct the
issue.
      1886 1887 1888 1889 1890 1891  | 
    
      # File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1886 class DNSSECStatus < Struct.new( :serve_signature, :status_message) SENSITIVE = [] include Aws::Structure end  |