You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CodeCommit::Types::PostCommentReplyInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeCommit::Types::PostCommentReplyInput
 
- Defined in:
- (unknown)
Overview
When passing PostCommentReplyInput as input to an Aws::Client method, you can use a vanilla Hash:
{
  in_reply_to: "CommentId", # required
  client_request_token: "ClientRequestToken",
  content: "Content", # required
}
Instance Attribute Summary collapse
- 
  
    
      #client_request_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. 
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The contents of your reply to a comment. 
- 
  
    
      #in_reply_to  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The system-generated ID of the comment to which you want to reply. 
Instance Attribute Details
#client_request_token ⇒ String
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
#content ⇒ String
The contents of your reply to a comment.
#in_reply_to ⇒ String
The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.