Delete Identities
cognitoidentity_delete_identities | R Documentation |
Deletes identities from an identity pool¶
Description¶
Deletes identities from an identity pool. You can specify a list of 1-60 identities that you want to delete.
You must use AWS Developer credentials to call this API.
Usage¶
cognitoidentity_delete_identities(IdentityIdsToDelete)
Arguments¶
IdentityIdsToDelete |
[required] A list of 1-60 identities that you want to delete. |
Value¶
A list with the following syntax:
list(
UnprocessedIdentityIds = list(
list(
IdentityId = "string",
ErrorCode = "AccessDenied"|"InternalServerError"
)
)
)
Request syntax¶
svc$delete_identities(
IdentityIdsToDelete = list(
"string"
)
)