paws.security.identity (version 0.1.0)

iam_create_access_key: Creates a new AWS secret access key and corresponding AWS access key ID for the specified user

Description

Creates a new AWS secret access key and corresponding AWS access key ID for the specified user. The default status for new keys is Active.

Usage

iam_create_access_key(UserName)

Arguments

UserName

The name of the IAM user that the new key will belong to.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: \_+=,.@-

Request syntax

svc$create_access_key(
  UserName = "string"
)

Details

If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request. This operation works for access keys under the AWS account. Consequently, you can use this operation to manage AWS account root user credentials. This is true even if the AWS account has no associated users.

For information about limits on the number of keys you can create, see Limitations on IAM Entities in the IAM User Guide.

To ensure the security of your AWS account, the secret access key is accessible only during key and user creation. You must save the key (for example, in a text file) if you want to be able to access it again. If a secret key is lost, you can delete the access keys for the associated user and then create new keys.

Examples

Run this code
# NOT RUN {
# The following command creates an access key (access key ID and secret
# access key) for the IAM user named Bob.
# }
# NOT RUN {
svc$create_access_key(
  UserName = "Bob"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace