Class: Aws::Amplify::Types::ListBranchesResult

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

Instance Attribute Details

#branchesArray<Types::Branch>

A list of branches for an Amplify app.

Returns:



2012
2013
2014
2015
2016
2017
# File 'lib/aws-sdk-amplify/types.rb', line 2012

class ListBranchesResult < Struct.new(
  :branches,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.

Returns:

  • (String)


2012
2013
2014
2015
2016
2017
# File 'lib/aws-sdk-amplify/types.rb', line 2012

class ListBranchesResult < Struct.new(
  :branches,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end