Class: Aws::AuditManager::Types::ControlComment

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#author_nameString

The name of the user who authored the comment.

Returns:

  • (String)


1222
1223
1224
1225
1226
1227
1228
# File 'gems/aws-sdk-auditmanager/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_bodyString

The body text of a control comment.

Returns:

  • (String)


1222
1223
1224
1225
1226
1227
1228
# File 'gems/aws-sdk-auditmanager/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_dateTime

The time when the comment was posted.

Returns:

  • (Time)


1222
1223
1224
1225
1226
1227
1228
# File 'gems/aws-sdk-auditmanager/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