Class: Aws::Lightsail::Types::GetBundlesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::GetBundlesRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Note:
When making an API call, you may pass GetBundlesRequest data as a hash:
{
include_inactive: false,
page_token: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_inactive ⇒ Boolean
A Boolean value that indicates whether to include inactive (unavailable) bundles in the response of your request.
-
#page_token ⇒ String
The token to advance to the next page of results from your request.
Instance Attribute Details
#include_inactive ⇒ Boolean
A Boolean value that indicates whether to include inactive (unavailable) bundles in the response of your request.
7595 7596 7597 7598 7599 7600 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 7595 class GetBundlesRequest < Struct.new( :include_inactive, :page_token) SENSITIVE = [] include Aws::Structure end |
#page_token ⇒ String
The token to advance to the next page of results from your request.
To get a page token, perform an initial GetBundles
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.
7595 7596 7597 7598 7599 7600 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 7595 class GetBundlesRequest < Struct.new( :include_inactive, :page_token) SENSITIVE = [] include Aws::Structure end |