Class: Aws::AuditManager::Types::ControlComment
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AuditManager::Types::ControlComment
 
- Defined in:
- gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb
Overview
A comment that's posted by a user on a control. This includes the author's name, the comment text, and a timestamp.
Constant Summary collapse
- SENSITIVE =
- [:author_name, :comment_body] 
Instance Attribute Summary collapse
- 
  
    
      #author_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the user who authored the comment. 
- 
  
    
      #comment_body  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The body text of a control comment. 
- 
  
    
      #posted_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time when the comment was posted. 
Instance Attribute Details
#author_name ⇒ String
The name of the user who authored the comment.
| 1233 1234 1235 1236 1237 1238 1239 | # File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1233 class ControlComment < Struct.new( :author_name, :comment_body, :posted_date) SENSITIVE = [:author_name, :comment_body] include Aws::Structure end | 
#comment_body ⇒ String
The body text of a control comment.
| 1233 1234 1235 1236 1237 1238 1239 | # File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1233 class ControlComment < Struct.new( :author_name, :comment_body, :posted_date) SENSITIVE = [:author_name, :comment_body] include Aws::Structure end | 
#posted_date ⇒ Time
The time when the comment was posted.
| 1233 1234 1235 1236 1237 1238 1239 | # File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1233 class ControlComment < Struct.new( :author_name, :comment_body, :posted_date) SENSITIVE = [:author_name, :comment_body] include Aws::Structure end |