Class: Aws::CodeCommit::Types::PostCommentReplyInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::PostCommentReplyInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
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.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
5527 5528 5529 5530 5531 5532 5533 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5527 class PostCommentReplyInput < Struct.new( :in_reply_to, :client_request_token, :content) SENSITIVE = [] include Aws::Structure end |
#content ⇒ String
The contents of your reply to a comment.
5527 5528 5529 5530 5531 5532 5533 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5527 class PostCommentReplyInput < Struct.new( :in_reply_to, :client_request_token, :content) SENSITIVE = [] include Aws::Structure end |
#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.
5527 5528 5529 5530 5531 5532 5533 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5527 class PostCommentReplyInput < Struct.new( :in_reply_to, :client_request_token, :content) SENSITIVE = [] include Aws::Structure end |