Class: Aws::Amplify::Types::ListBranchesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListBranchesResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The result structure for the list branches request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branches ⇒ Array<Types::Branch>
A list of branches for an Amplify app.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#branches ⇒ Array<Types::Branch>
A list of branches for an Amplify app.
2109 2110 2111 2112 2113 2114 |
# File 'lib/aws-sdk-amplify/types.rb', line 2109 class ListBranchesResult < Struct.new( :branches, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.
2109 2110 2111 2112 2113 2114 |
# File 'lib/aws-sdk-amplify/types.rb', line 2109 class ListBranchesResult < Struct.new( :branches, :next_token) SENSITIVE = [] include Aws::Structure end |