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

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

Instance Attribute Summary collapse

Instance Attribute Details

#author_nameString

The name of the user who authored the comment.

Returns:

  • (String)


1294
1295
1296
1297
1298
1299
1300
# File 'lib/aws-sdk-auditmanager/types.rb', line 1294

class ControlComment < Struct.new(
  :author_name,
  :comment_body,
  :posted_date)
  SENSITIVE = []
  include Aws::Structure
end

#comment_bodyString

The body text of a control comment.

Returns:

  • (String)


1294
1295
1296
1297
1298
1299
1300
# File 'lib/aws-sdk-auditmanager/types.rb', line 1294

class ControlComment < Struct.new(
  :author_name,
  :comment_body,
  :posted_date)
  SENSITIVE = []
  include Aws::Structure
end

#posted_dateTime

The time when the comment was posted.

Returns:

  • (Time)


1294
1295
1296
1297
1298
1299
1300
# File 'lib/aws-sdk-auditmanager/types.rb', line 1294

class ControlComment < Struct.new(
  :author_name,
  :comment_body,
  :posted_date)
  SENSITIVE = []
  include Aws::Structure
end