AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list.

Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters.

If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required.

This operation works for access keys under the Amazon Web Services account. If the Amazon Web Services account has no associated users, the root user returns it's own access key IDs by running this command.

To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ListAccessKeysAsync.

Namespace: Amazon.IdentityManagement
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z

Syntax

C#
public virtual ListAccessKeysResponse ListAccessKeys(
         ListAccessKeysRequest request
)

Parameters

request
Type: Amazon.IdentityManagement.Model.ListAccessKeysRequest

Container for the necessary parameters to execute the ListAccessKeys service method.

Return Value


The response from the ListAccessKeys service method, as returned by IdentityManagementService.

Exceptions

ExceptionCondition
NoSuchEntityException The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
ServiceFailureException The request processing has failed because of an unknown error, exception or failure.

Examples

The following command lists the access keys IDs for the IAM user named Alice.

To list the access key IDs for an IAM user


var client = new AmazonIdentityManagementServiceClient();
var response = client.ListAccessKeys(new ListAccessKeysRequest 
{
    UserName = "Alice"
});

List<AccessKeyMetadata> accessKeyMetadata = response.AccessKeyMetadata;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also