Class: Aws::Snowball::Types::ListCompatibleImagesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::ListCompatibleImagesRequest
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass ListCompatibleImagesRequest data as a hash:
{
max_results: 1,
next_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results for the list of compatible images.
-
#next_token ⇒ String
HTTP requests are stateless.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results for the list of compatible images. Currently, a Snowball Edge device can store 10 AMIs.
2101 2102 2103 2104 2105 2106 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2101 class ListCompatibleImagesRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
HTTP requests are stateless. To identify what object comes "next"
in the list of compatible images, you can specify a value for
NextToken
as the starting point for your list of returned images.
2101 2102 2103 2104 2105 2106 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2101 class ListCompatibleImagesRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |