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:



1858
1859
1860
1861
1862
1863
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1858

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)


1858
1859
1860
1861
1862
1863
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1858

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