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 |
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
field is not specified, the user name is determined
implicitly based on the Amazon Web Services access key ID used to sign
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 even if the Amazon Web
Services account has no associated users.
To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
This operation returns paginated results.
Synopsis
- data ListAccessKeys = ListAccessKeys' {}
- newListAccessKeys :: ListAccessKeys
- listAccessKeys_userName :: Lens' ListAccessKeys (Maybe Text)
- listAccessKeys_marker :: Lens' ListAccessKeys (Maybe Text)
- listAccessKeys_maxItems :: Lens' ListAccessKeys (Maybe Natural)
- data ListAccessKeysResponse = ListAccessKeysResponse' {}
- newListAccessKeysResponse :: Int -> ListAccessKeysResponse
- listAccessKeysResponse_marker :: Lens' ListAccessKeysResponse (Maybe Text)
- listAccessKeysResponse_isTruncated :: Lens' ListAccessKeysResponse (Maybe Bool)
- listAccessKeysResponse_httpStatus :: Lens' ListAccessKeysResponse Int
- listAccessKeysResponse_accessKeyMetadata :: Lens' ListAccessKeysResponse [AccessKeyMetadata]
Creating a Request
data ListAccessKeys Source #
See: newListAccessKeys
smart constructor.
ListAccessKeys' | |
|
Instances
newListAccessKeys :: ListAccessKeys Source #
Create a value of ListAccessKeys
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:ListAccessKeys'
, listAccessKeys_userName
- The name of the user.
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: _+=,.@-
$sel:marker:ListAccessKeys'
, listAccessKeys_marker
- Use this parameter only when paginating results and only after you
receive a response indicating that the results are truncated. Set it to
the value of the Marker
element in the response that you received to
indicate where the next call should start.
$sel:maxItems:ListAccessKeys'
, listAccessKeys_maxItems
- Use this only when paginating results to indicate the maximum number of
items you want in the response. If additional items exist beyond the
maximum you specify, the IsTruncated
response element is true
.
If you do not include this parameter, the number of items defaults to
100. Note that IAM might return fewer results, even when there are more
results available. In that case, the IsTruncated
response element
returns true
, and Marker
contains a value to include in the
subsequent call that tells the service where to continue from.
Request Lenses
listAccessKeys_userName :: Lens' ListAccessKeys (Maybe Text) Source #
The name of the user.
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: _+=,.@-
listAccessKeys_marker :: Lens' ListAccessKeys (Maybe Text) Source #
Use this parameter only when paginating results and only after you
receive a response indicating that the results are truncated. Set it to
the value of the Marker
element in the response that you received to
indicate where the next call should start.
listAccessKeys_maxItems :: Lens' ListAccessKeys (Maybe Natural) Source #
Use this only when paginating results to indicate the maximum number of
items you want in the response. If additional items exist beyond the
maximum you specify, the IsTruncated
response element is true
.
If you do not include this parameter, the number of items defaults to
100. Note that IAM might return fewer results, even when there are more
results available. In that case, the IsTruncated
response element
returns true
, and Marker
contains a value to include in the
subsequent call that tells the service where to continue from.
Destructuring the Response
data ListAccessKeysResponse Source #
Contains the response to a successful ListAccessKeys request.
See: newListAccessKeysResponse
smart constructor.
ListAccessKeysResponse' | |
|
Instances
newListAccessKeysResponse Source #
Create a value of ListAccessKeysResponse
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:marker:ListAccessKeys'
, listAccessKeysResponse_marker
- When IsTruncated
is true
, this element is present and contains the
value to use for the Marker
parameter in a subsequent pagination
request.
$sel:isTruncated:ListAccessKeysResponse'
, listAccessKeysResponse_isTruncated
- A flag that indicates whether there are more items to return. If your
results were truncated, you can make a subsequent pagination request
using the Marker
request parameter to retrieve more items. Note that
IAM might return fewer than the MaxItems
number of results even when
there are more results available. We recommend that you check
IsTruncated
after every call to ensure that you receive all your
results.
$sel:httpStatus:ListAccessKeysResponse'
, listAccessKeysResponse_httpStatus
- The response's http status code.
$sel:accessKeyMetadata:ListAccessKeysResponse'
, listAccessKeysResponse_accessKeyMetadata
- A list of objects containing metadata about the access keys.
Response Lenses
listAccessKeysResponse_marker :: Lens' ListAccessKeysResponse (Maybe Text) Source #
When IsTruncated
is true
, this element is present and contains the
value to use for the Marker
parameter in a subsequent pagination
request.
listAccessKeysResponse_isTruncated :: Lens' ListAccessKeysResponse (Maybe Bool) Source #
A flag that indicates whether there are more items to return. If your
results were truncated, you can make a subsequent pagination request
using the Marker
request parameter to retrieve more items. Note that
IAM might return fewer than the MaxItems
number of results even when
there are more results available. We recommend that you check
IsTruncated
after every call to ensure that you receive all your
results.
listAccessKeysResponse_httpStatus :: Lens' ListAccessKeysResponse Int Source #
The response's http status code.
listAccessKeysResponse_accessKeyMetadata :: Lens' ListAccessKeysResponse [AccessKeyMetadata] Source #
A list of objects containing metadata about the access keys.