Class: Aws::CodeCommit::Types::UpdateRepositoryNameInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#new_nameString

The new name for the repository.

Returns:

  • (String)


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_nameString

The existing name of the repository.

Returns:

  • (String)


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