Class: Aws::Lightsail::Types::GetInstancesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::GetInstancesRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Note:
When making an API call, you may pass GetInstancesRequest data as a hash:
{
page_token: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#page_token ⇒ String
The token to advance to the next page of results from your request.
Instance Attribute Details
#page_token ⇒ String
The token to advance to the next page of results from your request.
To get a page token, perform an initial GetInstances
request. If
your results are paginated, the response will return a next page
token that you can specify as the page token in a subsequent
request.
9171 9172 9173 9174 9175 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9171 class GetInstancesRequest < Struct.new( :page_token) SENSITIVE = [] include Aws::Structure end |