Class: Aws::CodeCommit::Types::PutCommentReactionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::PutCommentReactionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment_id ⇒ String
The ID of the comment to which you want to add or update a reaction.
-
#reaction_value ⇒ String
The emoji reaction you want to add or update.
Instance Attribute Details
#comment_id ⇒ String
The ID of the comment to which you want to add or update a reaction.
5911 5912 5913 5914 5915 5916 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5911 class PutCommentReactionInput < Struct.new( :comment_id, :reaction_value) SENSITIVE = [] include Aws::Structure end |
#reaction_value ⇒ String
The emoji reaction you want to add or update. To remove a reaction, provide a value of blank or null. You can also provide the value of none. For information about emoji reaction values supported in CodeCommit, see the [CodeCommit User Guide].
[1]: docs.aws.amazon.com/codecommit/latest/userguide/how-to-commit-comment.html#emoji-reaction-table
5911 5912 5913 5914 5915 5916 |
# File 'lib/aws-sdk-codecommit/types.rb', line 5911 class PutCommentReactionInput < Struct.new( :comment_id, :reaction_value) SENSITIVE = [] include Aws::Structure end |