Class: Aws::Amplify::Types::ListBranchesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListBranchesRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass ListBranchesRequest data as a hash:
{
app_id: "AppId", # required
next_token: "NextToken",
max_results: 1,
}
The request structure for the list branches request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#max_results ⇒ Integer
The maximum number of records to list in a single response.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
2091 2092 2093 2094 2095 2096 2097 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2091 class ListBranchesRequest < Struct.new( :app_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of records to list in a single response.
2091 2092 2093 2094 2095 2096 2097 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2091 class ListBranchesRequest < Struct.new( :app_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. Set to null to start listing branches from the start. If a non-null pagination token is returned in a result, pass its value in here to list more branches.
2091 2092 2093 2094 2095 2096 2097 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2091 class ListBranchesRequest < Struct.new( :app_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |