Class: Aws::CodeCommit::Types::DeleteBranchInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::DeleteBranchInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Represents the input of a delete branch operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #branch_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the branch to delete.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository that contains the branch to be deleted.
 
Instance Attribute Details
#branch_name ⇒ String
The name of the branch to delete.
      1850 1851 1852 1853 1854 1855  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1850 class DeleteBranchInput < Struct.new( :repository_name, :branch_name) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository that contains the branch to be deleted.
      1850 1851 1852 1853 1854 1855  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1850 class DeleteBranchInput < Struct.new( :repository_name, :branch_name) SENSITIVE = [] include Aws::Structure end  |