Class: Aws::DeviceFarm::Types::ListProjectsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListProjectsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list projects request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the number of items that are returned is significantly large, this is an identifier that is also returned.
-
#projects ⇒ Array<Types::Project>
Information about the projects.
Instance Attribute Details
#next_token ⇒ String
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
3102 3103 3104 3105 3106 3107 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3102 class ListProjectsResult < Struct.new( :projects, :next_token) SENSITIVE = [] include Aws::Structure end |
#projects ⇒ Array<Types::Project>
Information about the projects.
3102 3103 3104 3105 3106 3107 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3102 class ListProjectsResult < Struct.new( :projects, :next_token) SENSITIVE = [] include Aws::Structure end |