Class: Aws::S3Outposts::Types::ListOutpostsWithS3Request
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Outposts::Types::ListOutpostsWithS3Request
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3outposts/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of Outposts to return.
-
#next_token ⇒ String
When you can get additional results from the ‘ListOutpostsWithS3` call, a `NextToken` parameter is returned in the output.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of Outposts to return. The limit is 100.
276 277 278 279 280 281 |
# File 'lib/aws-sdk-s3outposts/types.rb', line 276 class ListOutpostsWithS3Request < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When you can get additional results from the ‘ListOutpostsWithS3` call, a `NextToken` parameter is returned in the output. You can then pass in a subsequent command to the `NextToken` parameter to continue listing additional Outposts.
276 277 278 279 280 281 |
# File 'lib/aws-sdk-s3outposts/types.rb', line 276 class ListOutpostsWithS3Request < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |