Class: Aws::AuditManager::Types::ControlComment
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::ControlComment
- Includes:
- Structure
- Defined in:
- 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.
1222 1223 1224 1225 1226 1227 1228 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1222 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.
1222 1223 1224 1225 1226 1227 1228 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1222 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.
1222 1223 1224 1225 1226 1227 1228 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1222 class ControlComment < Struct.new( :author_name, :comment_body, :posted_date) SENSITIVE = [:author_name, :comment_body] include Aws::Structure end |