Class: Aws::Cloud9::Types::ListEnvironmentsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Cloud9::Types::ListEnvironmentsResult
- Defined in:
- gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_ids ⇒ Array<String>
The list of environment identifiers.
-
#next_token ⇒ String
If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token.
Instance Attribute Details
#environment_ids ⇒ Array<String>
The list of environment identifiers.
607 608 609 610 611 612 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 607 class ListEnvironmentsResult < Struct.new( :next_token, :environment_ids) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call.
607 608 609 610 611 612 |
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 607 class ListEnvironmentsResult < Struct.new( :next_token, :environment_ids) SENSITIVE = [] include Aws::Structure end |