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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-amplify/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:



2090
2091
2092
2093
2094
2095
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2090

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)


2090
2091
2092
2093
2094
2095
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2090

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