Class: Aws::CodeCommit::Types::ListBranchesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::ListBranchesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Represents the output of a list branches operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branches ⇒ Array<String>
The list of branch names.
-
#next_token ⇒ String
An enumeration token that returns the batch of the results.
Instance Attribute Details
#branches ⇒ Array<String>
The list of branch names.
4205 4206 4207 4208 4209 4210 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4205 class ListBranchesOutput < Struct.new( :branches, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An enumeration token that returns the batch of the results.
4205 4206 4207 4208 4209 4210 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4205 class ListBranchesOutput < Struct.new( :branches, :next_token) SENSITIVE = [] include Aws::Structure end |