Class: Aws::CodeCommit::Types::UpdateRepositoryNameInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::UpdateRepositoryNameInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass UpdateRepositoryNameInput data as a hash:
{
old_name: "RepositoryName", # required
new_name: "RepositoryName", # required
}
Represents the input of an update repository description operation.
Instance Attribute Summary collapse
-
#new_name ⇒ String
The new name for the repository.
-
#old_name ⇒ String
The existing name of the repository.
Instance Attribute Details
#new_name ⇒ String
The new name for the repository.
1010 1011 1012 1013 1014 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1010 class UpdateRepositoryNameInput < Struct.new( :old_name, :new_name) include Aws::Structure end |
#old_name ⇒ String
The existing name of the repository.
1010 1011 1012 1013 1014 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1010 class UpdateRepositoryNameInput < Struct.new( :old_name, :new_name) include Aws::Structure end |