Class: Aws::Amplify::Types::ListAppsResult

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

Instance Attribute Details

#appsArray<Types::App>

A list of Amplify apps.

Returns:



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_tokenString

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.

Returns:

  • (String)


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