Class: Aws::Lightsail::Types::GetInstancesResult
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Lightsail::Types::GetInstancesResult
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #instances  ⇒ Array<Types::Instance> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of key-value pairs containing information about your instances. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token to advance to the next page of results from your request. 
Instance Attribute Details
#instances ⇒ Array<Types::Instance>
An array of key-value pairs containing information about your instances.
| 8315 8316 8317 8318 8319 8320 | # File 'lib/aws-sdk-lightsail/types.rb', line 8315 class GetInstancesResult < Struct.new( :instances, :next_page_token) SENSITIVE = [] include Aws::Structure end | 
#next_page_token ⇒ String
The token to advance to the next page of results from your request.
A next page token is not returned if there are no more results to display.
To get the next page of results, perform another ‘GetInstances` request and specify the next page token using the `pageToken` parameter.
| 8315 8316 8317 8318 8319 8320 | # File 'lib/aws-sdk-lightsail/types.rb', line 8315 class GetInstancesResult < Struct.new( :instances, :next_page_token) SENSITIVE = [] include Aws::Structure end |