List Access Grants Locations
s3control_list_access_grants_locations | R Documentation |
Returns a list of the locations registered in your S3 Access Grants instance¶
Description¶
Returns a list of the locations registered in your S3 Access Grants instance.
Permissions¶
You must have the s3:ListAccessGrantsLocations
permission to use this
operation.
Usage¶
s3control_list_access_grants_locations(AccountId, NextToken, MaxResults,
LocationScope)
Arguments¶
AccountId |
[required] The Amazon Web Services account ID of the S3 Access Grants instance. |
NextToken |
A pagination token to request the next page of results. Pass this
value into a subsequent |
MaxResults |
The maximum number of access grants that you would like returned
in the |
LocationScope |
The S3 path to the location that you are registering. The
location scope can be the default S3 location |
Value¶
A list with the following syntax:
list(
NextToken = "string",
AccessGrantsLocationsList = list(
list(
CreatedAt = as.POSIXct(
"2015-01-01"
),
AccessGrantsLocationId = "string",
AccessGrantsLocationArn = "string",
LocationScope = "string",
IAMRoleArn = "string"
)
)
)
Request syntax¶
svc$list_access_grants_locations(
AccountId = "string",
NextToken = "string",
MaxResults = 123,
LocationScope = "string"
)