Class: Aws::CodeCommit::Types::CreateBranchInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::CreateBranchInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Represents the input of a create branch operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branch_name ⇒ String
The name of the new branch to create.
-
#commit_id ⇒ String
The ID of the commit to point the new branch to.
-
#repository_name ⇒ String
The name of the repository in which you want to create the new branch.
Instance Attribute Details
#branch_name ⇒ String
The name of the new branch to create.
1395 1396 1397 1398 1399 1400 1401 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1395 class CreateBranchInput < Struct.new( :repository_name, :branch_name, :commit_id) SENSITIVE = [] include Aws::Structure end |
#commit_id ⇒ String
The ID of the commit to point the new branch to.
1395 1396 1397 1398 1399 1400 1401 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1395 class CreateBranchInput < Struct.new( :repository_name, :branch_name, :commit_id) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository in which you want to create the new branch.
1395 1396 1397 1398 1399 1400 1401 |
# File 'lib/aws-sdk-codecommit/types.rb', line 1395 class CreateBranchInput < Struct.new( :repository_name, :branch_name, :commit_id) SENSITIVE = [] include Aws::Structure end |