Class: Aws::Amplify::Types::ListAppsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListAppsResult
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
The result structure for an Amplify app list request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#apps ⇒ Array<Types::App>
A list of Amplify apps.
-
#next_token ⇒ String
A pagination token.
Instance Attribute Details
#apps ⇒ Array<Types::App>
A list of Amplify apps.
1966 1967 1968 1969 1970 1971 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1966 class ListAppsResult < Struct.new( :apps, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token. Set to null to start listing apps from start. If non-null, the pagination token is returned in a result. Pass its value in here to list more projects.
1966 1967 1968 1969 1970 1971 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1966 class ListAppsResult < Struct.new( :apps, :next_token) SENSITIVE = [] include Aws::Structure end |