Class: Aws::CodeCommit::Types::PostCommentForComparedCommitInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::PostCommentForComparedCommitInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#after_commit_id ⇒ String
To establish the directionality of the comparison, the full commit ID of the after commit.
-
#before_commit_id ⇒ String
To establish the directionality of the comparison, the full commit ID of the before commit.
-
#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 content of the comment you want to make.
-
#location ⇒ Types::Location
The location of the comparison where you want to comment.
-
#repository_name ⇒ String
The name of the repository where you want to post a comment on the comparison between commits.
Instance Attribute Details
#after_commit_id ⇒ String
To establish the directionality of the comparison, the full commit ID of the after commit.
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5335 class PostCommentForComparedCommitInput < Struct.new( :repository_name, :before_commit_id, :after_commit_id, :location, :content, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#before_commit_id ⇒ String
To establish the directionality of the comparison, the full commit ID of the before commit. Required for commenting on any commit unless that commit is the initial commit.
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5335 class PostCommentForComparedCommitInput < Struct.new( :repository_name, :before_commit_id, :after_commit_id, :location, :content, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#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.
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5335 class PostCommentForComparedCommitInput < Struct.new( :repository_name, :before_commit_id, :after_commit_id, :location, :content, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#content ⇒ String
The content of the comment you want to make.
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5335 class PostCommentForComparedCommitInput < Struct.new( :repository_name, :before_commit_id, :after_commit_id, :location, :content, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#location ⇒ Types::Location
The location of the comparison where you want to comment.
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5335 class PostCommentForComparedCommitInput < Struct.new( :repository_name, :before_commit_id, :after_commit_id, :location, :content, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository where you want to post a comment on the comparison between commits.
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5335 class PostCommentForComparedCommitInput < Struct.new( :repository_name, :before_commit_id, :after_commit_id, :location, :content, :client_request_token) SENSITIVE = [] include Aws::Structure end |