Class: Aws::Route53::Types::ChangeInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::ChangeInfo
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-route53/types.rb
 
Overview
A complex type that describes change information about changes made to your hosted zone.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #comment  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A comment you can provide.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This element contains an ID that you use when performing a [GetChange] action to get detailed information about the change.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current state of the request.
 - 
  
    
      #submitted_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the change request was submitted in [ISO 8601 format] and Coordinated Universal Time (UTC).
 
Instance Attribute Details
#comment ⇒ String
A comment you can provide.
      724 725 726 727 728 729 730 731  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 724 class ChangeInfo < Struct.new( :id, :status, :submitted_at, :comment) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
This element contains an ID that you use when performing a
- GetChange][1
 - 
action to get detailed information about the change.
 
[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
      724 725 726 727 728 729 730 731  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 724 class ChangeInfo < Struct.new( :id, :status, :submitted_at, :comment) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The current state of the request. ‘PENDING` indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.
      724 725 726 727 728 729 730 731  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 724 class ChangeInfo < Struct.new( :id, :status, :submitted_at, :comment) SENSITIVE = [] include Aws::Structure end  | 
  
#submitted_at ⇒ Time
The date and time that the change request was submitted in [ISO 8601 format] and Coordinated Universal Time (UTC). For example, the value ‘2017-03-27T17:48:16.751Z` represents March 27, 2017 at 17:48:16.751 UTC.
      724 725 726 727 728 729 730 731  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 724 class ChangeInfo < Struct.new( :id, :status, :submitted_at, :comment) SENSITIVE = [] include Aws::Structure end  |