Class: Aws::CodeCommit::Types::Comment
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::Comment
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Returns information about a specific comment.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #author_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the person who posted the comment.
 - 
  
    
      #caller_reactions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.
 - 
  
    
      #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.
 - 
  
    
      #comment_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-generated comment ID.
 - 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content of the comment.
 - 
  
    
      #creation_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time the comment was created, in timestamp format.
 - 
  
    
      #deleted  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Boolean value indicating whether the comment has been deleted.
 - 
  
    
      #in_reply_to  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the comment for which this comment is a reply, if any.
 - 
  
    
      #last_modified_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time the comment was most recently modified, in timestamp format.
 - 
  
    
      #reaction_counts  ⇒ Hash<String,Integer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A string to integer map that represents the number of individual users who have responded to a comment with the specified reactions.
 
Instance Attribute Details
#author_arn ⇒ String
The Amazon Resource Name (ARN) of the person who posted the comment.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#caller_reactions ⇒ Array<String>
The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) 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.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#comment_id ⇒ String
The system-generated comment ID.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#content ⇒ String
The content of the comment.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#creation_date ⇒ Time
The date and time the comment was created, in timestamp format.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#deleted ⇒ Boolean
A Boolean value indicating whether the comment has been deleted.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#in_reply_to ⇒ String
The ID of the comment for which this comment is a reply, if any.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#last_modified_date ⇒ Time
The date and time the comment was most recently modified, in timestamp format.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  | 
  
#reaction_counts ⇒ Hash<String,Integer>
A string to integer map that represents the number of individual users who have responded to a comment with the specified reactions.
      908 909 910 911 912 913 914 915 916 917 918 919 920 921  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 908 class Comment < Struct.new( :comment_id, :content, :in_reply_to, :creation_date, :last_modified_date, :author_arn, :deleted, :client_request_token, :caller_reactions, :reaction_counts) SENSITIVE = [] include Aws::Structure end  |