Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Creates a new Amazon Web Services secret access key and corresponding
Amazon Web Services access key ID for the specified user. The default
status for new keys is Active
.
If you do not specify a user name, IAM determines the user name implicitly based on the Amazon Web Services access key ID signing the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials. This is true even if the Amazon Web Services account has no associated users.
For information about quotas on the number of keys you can create, see IAM and STS quotas in the IAM User Guide.
To ensure the security of your Amazon Web Services 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.
Synopsis
- data CreateAccessKey = CreateAccessKey' {}
- newCreateAccessKey :: CreateAccessKey
- createAccessKey_userName :: Lens' CreateAccessKey (Maybe Text)
- data CreateAccessKeyResponse = CreateAccessKeyResponse' {}
- newCreateAccessKeyResponse :: Int -> AccessKeyInfo -> CreateAccessKeyResponse
- createAccessKeyResponse_httpStatus :: Lens' CreateAccessKeyResponse Int
- createAccessKeyResponse_accessKey :: Lens' CreateAccessKeyResponse AccessKeyInfo
Creating a Request
data CreateAccessKey Source #
See: newCreateAccessKey
smart constructor.
CreateAccessKey' | |
|
Instances
newCreateAccessKey :: CreateAccessKey Source #
Create a value of CreateAccessKey
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:userName:CreateAccessKey'
, createAccessKey_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 Lenses
createAccessKey_userName :: Lens' CreateAccessKey (Maybe Text) Source #
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: _+=,.@-
Destructuring the Response
data CreateAccessKeyResponse Source #
Contains the response to a successful CreateAccessKey request.
See: newCreateAccessKeyResponse
smart constructor.
CreateAccessKeyResponse' | |
|
Instances
newCreateAccessKeyResponse Source #
Create a value of CreateAccessKeyResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:httpStatus:CreateAccessKeyResponse'
, createAccessKeyResponse_httpStatus
- The response's http status code.
$sel:accessKey:CreateAccessKeyResponse'
, createAccessKeyResponse_accessKey
- A structure with details about the access key.
Response Lenses
createAccessKeyResponse_httpStatus :: Lens' CreateAccessKeyResponse Int Source #
The response's http status code.
createAccessKeyResponse_accessKey :: Lens' CreateAccessKeyResponse AccessKeyInfo Source #
A structure with details about the access key.