Learn R Programming

paws.security.identity (version 0.1.8)

sts_get_caller_identity: Returns details about the IAM user or role whose credentials are used to call the operation

Description

Returns details about the IAM user or role whose credentials are used to call the operation.

Usage

sts_get_caller_identity()

Arguments

Request syntax

svc$get_caller_identity()

Details

No permissions are required to perform this operation. If an administrator adds a policy to your IAM user or role that explicitly denies access to the sts:GetCallerIdentity action, you can still perform this operation. Permissions are not required because the same information is returned when an IAM user or role is denied access. To view an example response, see I Am Not Authorized to Perform: iam:DeleteVirtualMFADevice in the IAM User Guide.

Examples

Run this code
# NOT RUN {
# This example shows a request and response made with the credentials for
# a user named Alice in the AWS account 123456789012.
svc$get_caller_identity()

# This example shows a request and response made with temporary
# credentials created by AssumeRole. The name of the assumed role is
# my-role-name, and the RoleSessionName is set to my-role-session-name.
svc$get_caller_identity()

# This example shows a request and response made with temporary
# credentials created by using GetFederationToken. The Name parameter is
# set to my-federated-user-name.
svc$get_caller_identity()
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab