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.
7132 7133 7134 7135 7136 7137 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7132 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.
7132 7133 7134 7135 7136 7137 |
# File 'lib/aws-sdk-codecommit/types.rb', line 7132 class UpdateRepositoryDescriptionInput < Struct.new( :repository_name, :repository_description) SENSITIVE = [] include Aws::Structure end |