Class: Aws::S3Outposts::Types::ListOutpostsWithS3Result
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Outposts::Types::ListOutpostsWithS3Result
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3outposts/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Returns a token that you can use to call ‘ListOutpostsWithS3` again and receive additional results, if there are any.
-
#outposts ⇒ Array<Types::Outpost>
Returns the list of Outposts that have the following characteristics:.
Instance Attribute Details
#next_token ⇒ String
Returns a token that you can use to call ‘ListOutpostsWithS3` again and receive additional results, if there are any.
303 304 305 306 307 308 |
# File 'lib/aws-sdk-s3outposts/types.rb', line 303 class ListOutpostsWithS3Result < Struct.new( :outposts, :next_token) SENSITIVE = [] include Aws::Structure end |
#outposts ⇒ Array<Types::Outpost>
Returns the list of Outposts that have the following characteristics:
-
outposts that have S3 provisioned
-
outposts that are ‘Active` (not pending any provisioning nor decommissioned)
-
outposts to which the the calling Amazon Web Services account has access
303 304 305 306 307 308 |
# File 'lib/aws-sdk-s3outposts/types.rb', line 303 class ListOutpostsWithS3Result < Struct.new( :outposts, :next_token) SENSITIVE = [] include Aws::Structure end |