Properties
| Name | Type | Description |
|---|---|---|
| UserName | object | |
| AccessKeyId | object | |
| Status | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateAccessKeyRequest",
"title": "UpdateAccessKeyRequest",
"type": "object",
"required": [
"AccessKeyId",
"Status"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the user whose key you want to update.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
},
"AccessKeyId": {
"allOf": [
{
"$ref": "#/components/schemas/accessKeyIdType"
},
{
"description": "<p>The access key ID of the secret access key you want to update.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters that can consist of any upper or lowercased letter or digit.</p>"
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/statusType"
},
{
"description": " The status you want to assign to the secret access key. <code>Active</code> means that the key can be used for programmatic calls to Amazon Web Services, while <code>Inactive</code> means that the key cannot be used."
}
]
}
}
}