List Web Authn Credentials
cognitoidentityprovider_list_web_authn_credentials | R Documentation |
Generates a list of the current user's registered passkey, or webauthN, credentials¶
Description¶
Generates a list of the current user's registered passkey, or webauthN, credentials.
Usage¶
cognitoidentityprovider_list_web_authn_credentials(AccessToken,
NextToken, MaxResults)
Arguments¶
AccessToken |
[required] A valid access token that Amazon Cognito issued to the user whose registered passkeys you want to list. |
NextToken |
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list. |
MaxResults |
The maximum number of the user's passkey credentials that you want to return. |
Value¶
A list with the following syntax:
list(
Credentials = list(
list(
CredentialId = "string",
FriendlyCredentialName = "string",
RelyingPartyId = "string",
AuthenticatorAttachment = "string",
AuthenticatorTransports = list(
"string"
),
CreatedAt = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_web_authn_credentials(
AccessToken = "string",
NextToken = "string",
MaxResults = 123
)