Class: Aws::Amplify::Types::ListAppsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListAppsRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
The request structure for the list apps request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of records to list in a single response.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of records to list in a single response.
1915 1916 1917 1918 1919 1920 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1915 class ListAppsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. If non-null, the pagination token is returned in a result. Pass its value in another request to retrieve more entries.
1915 1916 1917 1918 1919 1920 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1915 class ListAppsRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |