Learn R Programming

paws.storage (version 0.1.12)

s3control_list_regional_buckets: Returns a list of all Outposts buckets in an Outpost that are owned by the authenticated sender of the request

Description

Returns a list of all Outposts buckets in an Outpost that are owned by the authenticated sender of the request. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and x-amz-outpost-id in your request, see the Examples section.

Usage

s3control_list_regional_buckets(AccountId, NextToken, MaxResults,
  OutpostId)

Value

A list with the following syntax:

list(
  RegionalBucketList = list(
    list(
      Bucket = "string",
      BucketArn = "string",
      PublicAccessBlockEnabled = TRUE|FALSE,
      CreationDate = as.POSIXct(
        "2015-01-01"
      ),
      OutpostId = "string"
    )
  ),
  NextToken = "string"
)

Arguments

AccountId

[required] The AWS account ID of the Outposts bucket.

NextToken

MaxResults

OutpostId

The ID of the AWS Outposts.

This is required by Amazon S3 on Outposts buckets.

Request syntax

svc$list_regional_buckets(
  AccountId = "string",
  NextToken = "string",
  MaxResults = 123,
  OutpostId = "string"
)