Skip to content

Get Access Point Scope

s3control_get_access_point_scope R Documentation

Returns the access point scope for a directory bucket

Description

Returns the access point scope for a directory bucket.

To use this operation, you must have the permission to perform the s3express:GetAccessPointScope action.

For information about REST API errors, see REST error responses.

Usage

s3control_get_access_point_scope(AccountId, Name)

Arguments

AccountId

[required] The Amazon Web Services account ID that owns the access point with the scope that you want to retrieve.

Name

[required] The name of the access point with the scope you want to retrieve.

Value

A list with the following syntax:

list(
  Scope = list(
    Prefixes = list(
      "string"
    ),
    Permissions = list(
      "GetObject"|"GetObjectAttributes"|"ListMultipartUploadParts"|"ListBucket"|"ListBucketMultipartUploads"|"PutObject"|"DeleteObject"|"AbortMultipartUpload"
    )
  )
)

Request syntax

svc$get_access_point_scope(
  AccountId = "string",
  Name = "string"
)