Learn R Programming

paws.storage (version 0.1.7)

s3control_list_access_points: Returns a list of the access points currently associated with the specified bucket

Description

Returns a list of the access points currently associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1000 access points (or the number specified in maxResults, whichever is less), then the response will include a continuation token that you can use to list the additional access points.

Usage

s3control_list_access_points(AccountId, Bucket, NextToken, MaxResults)

Arguments

AccountId

[required] The AWS account ID for owner of the bucket whose access points you want to list.

Bucket

The name of the bucket whose associated access points you want to list.

NextToken

A continuation token. If a previous call to ListAccessPoints returned a continuation token in the NextToken field, then providing that value here causes Amazon S3 to retrieve the next page of results.

MaxResults

The maximum number of access points that you want to include in the list. If the specified bucket has more than this number of access points, then the response will include a continuation token in the NextToken field that you can use to retrieve the next page of access points.

Request syntax

svc$list_access_points(
  AccountId = "string",
  Bucket = "string",
  NextToken = "string",
  MaxResults = 123
)