Class: Aws::CodeCommit::Types::UpdateRepositoryDescriptionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdateRepositoryDescriptionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass UpdateRepositoryDescriptionInput data as a hash:
{
repository_name: "RepositoryName", # required
repository_description: "RepositoryDescription",
}
Represents the input of an update repository description operation.
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.
984 985 986 987 988 |
# File 'lib/aws-sdk-codecommit/types.rb', line 984 class UpdateRepositoryDescriptionInput < Struct.new( :repository_name, :repository_description) include Aws::Structure end |
#repository_name ⇒ String
The name of the repository to set or change the comment or description for.
984 985 986 987 988 |
# File 'lib/aws-sdk-codecommit/types.rb', line 984 class UpdateRepositoryDescriptionInput < Struct.new( :repository_name, :repository_description) include Aws::Structure end |