Class: Aws::CodeCommit::Types::UpdateRepositoryDescriptionInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::UpdateRepositoryDescriptionInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Represents the input of an update repository description operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #repository_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new comment or description for the specified repository.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository to set or change the comment or description for.
 
Instance Attribute Details
#repository_description ⇒ String
The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.
      7135 7136 7137 7138 7139 7140  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 7135 class UpdateRepositoryDescriptionInput < Struct.new( :repository_name, :repository_description) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository to set or change the comment or description for.
      7135 7136 7137 7138 7139 7140  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 7135 class UpdateRepositoryDescriptionInput < Struct.new( :repository_name, :repository_description) SENSITIVE = [] include Aws::Structure end  |