Describe Identity
cognitoidentity_describe_identity | R Documentation |
Returns metadata related to the given identity, including when the identity was created and any associated linked logins¶
Description¶
Returns metadata related to the given identity, including when the identity was created and any associated linked logins.
You must use Amazon Web Services developer credentials to call this operation.
Usage¶
cognitoidentity_describe_identity(IdentityId)
Arguments¶
IdentityId |
[required] A unique identifier in the format REGION:GUID. |
Value¶
A list with the following syntax:
list(
IdentityId = "string",
Logins = list(
"string"
),
CreationDate = as.POSIXct(
"2015-01-01"
),
LastModifiedDate = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$describe_identity(
IdentityId = "string"
)