Class: Aws::CodeCommit::Types::UpdateCommentInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#comment_idString

The system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.

Returns:

  • (String)


6884
6885
6886
6887
6888
6889
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6884

class UpdateCommentInput < Struct.new(
  :comment_id,
  :content)
  SENSITIVE = []
  include Aws::Structure
end

#contentString

The updated content to replace the existing content of the comment.

Returns:

  • (String)


6884
6885
6886
6887
6888
6889
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6884

class UpdateCommentInput < Struct.new(
  :comment_id,
  :content)
  SENSITIVE = []
  include Aws::Structure
end