Class: Aws::CodeCommit::Types::PutCommentReactionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::PutCommentReactionInput
- Defined in:
- gems/aws-sdk-codecommit/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.
6092 6093 6094 6095 6096 6097 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6092 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.
6092 6093 6094 6095 6096 6097 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6092 class PutCommentReactionInput < Struct.new( :comment_id, :reaction_value) SENSITIVE = [] include Aws::Structure end |