Get Access Grants Location
s3control_get_access_grants_location | R Documentation |
Retrieves the details of a particular location registered in your S3 Access Grants instance¶
Description¶
Retrieves the details of a particular location registered in your S3 Access Grants instance.
Permissions¶
You must have the s3:GetAccessGrantsLocation
permission to use this
operation.
Usage¶
s3control_get_access_grants_location(AccountId, AccessGrantsLocationId)
Arguments¶
AccountId |
[required] The Amazon Web Services account ID of the S3 Access Grants instance. |
AccessGrantsLocationId |
[required] The ID of the registered location that you are
retrieving. S3 Access Grants assigns this ID when you register the
location. S3 Access Grants assigns the ID |
Value¶
A list with the following syntax:
list(
CreatedAt = as.POSIXct(
"2015-01-01"
),
AccessGrantsLocationId = "string",
AccessGrantsLocationArn = "string",
LocationScope = "string",
IAMRoleArn = "string"
)
Request syntax¶
svc$get_access_grants_location(
AccountId = "string",
AccessGrantsLocationId = "string"
)