Class: Aws::CodeCommit::Types::UpdateCommentInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdateCommentInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment_id ⇒ String
The system-generated ID of the comment you want to update.
-
#content ⇒ String
The updated content to replace the existing content of the comment.
Instance Attribute Details
#comment_id ⇒ String
The system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
6888 6889 6890 6891 6892 6893 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6888 class UpdateCommentInput < Struct.new( :comment_id, :content) SENSITIVE = [] include Aws::Structure end |
#content ⇒ String
The updated content to replace the existing content of the comment.
6888 6889 6890 6891 6892 6893 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6888 class UpdateCommentInput < Struct.new( :comment_id, :content) SENSITIVE = [] include Aws::Structure end |