Class: Aws::CodeBuild::Types::ListFleetsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ListFleetsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fleets ⇒ Array<String>
The list of compute fleet names.
-
#next_token ⇒ String
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken.
Instance Attribute Details
#fleets ⇒ Array<String>
The list of compute fleet names.
3384 3385 3386 3387 3388 3389 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3384 class ListFleetsOutput < Struct.new( :next_token, :fleets) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
3384 3385 3386 3387 3388 3389 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3384 class ListFleetsOutput < Struct.new( :next_token, :fleets) SENSITIVE = [] include Aws::Structure end |