Class: Aws::CodeCommit::Types::DeleteBranchInput

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

Instance Attribute Details

#branch_nameString

The name of the branch to delete.

Returns:

  • (String)


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_nameString

The name of the repository that contains the branch to be deleted.

Returns:

  • (String)


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