Class: Aws::CodeCommit::Types::PostCommentReplyInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

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.

Returns:

  • (String)


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

#contentString

The contents of your reply to a comment.

Returns:

  • (String)


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_toString

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

Returns:

  • (String)


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