List Access Grants Instances
| s3control_list_access_grants_instances | R Documentation |
Returns a list of S3 Access Grants instances¶
Description¶
Returns a list of S3 Access Grants instances. An S3 Access Grants instance serves as a logical grouping for your individual access grants. You can only have one S3 Access Grants instance per Region per account.
Permissions¶
You must have the s3:ListAccessGrantsInstances permission to use this
operation.
Usage¶
Arguments¶
AccountId[required] The ID of the Amazon Web Services account that is making this request.
NextTokenA pagination token to request the next page of results. Pass this value into a subsequent
List Access Grants Instancesrequest in order to retrieve the next page of results.MaxResultsThe maximum number of access grants that you would like returned in the
List Access Grantsresponse. If the results include the pagination tokenNextToken, make another call using theNextTokento determine if there are more results.
Value¶
A list with the following syntax:
list(
NextToken = "string",
AccessGrantsInstancesList = list(
list(
AccessGrantsInstanceId = "string",
AccessGrantsInstanceArn = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
IdentityCenterArn = "string"
)
)
)