Class: Aws::CodeBuild::Types::ListFleetsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ListFleetsOutput
- Defined in:
- gems/aws-sdk-codebuild/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.
3407 3408 3409 3410 3411 3412 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3407 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.
3407 3408 3409 3410 3411 3412 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3407 class ListFleetsOutput < Struct.new( :next_token, :fleets) SENSITIVE = [] include Aws::Structure end |