Class: Aws::CodeCommit::Types::DeleteRepositoryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::DeleteRepositoryInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass DeleteRepositoryInput data as a hash:
{
repository_name: "RepositoryName", # required
}
Represents the input of a delete repository operation.
Instance Attribute Summary collapse
-
#repository_name ⇒ String
The name of the repository to delete.
Instance Attribute Details
#repository_name ⇒ String
The name of the repository to delete.
262 263 264 265 |
# File 'lib/aws-sdk-codecommit/types.rb', line 262 class DeleteRepositoryInput < Struct.new( :repository_name) include Aws::Structure end |