Amazon S3 · Schema
Error
Container for all error elements.
ArchiveBackupCloud StorageData StorageObject StorageScalable Storage
Properties
| Name | Type | Description |
|---|---|---|
| Code | string | The error code is a string that uniquely identifies an error condition. Examples include NoSuchBucket, NoSuchKey, AccessDenied, InvalidBucketName, etc. |
| Message | string | A human-readable description of the error. |
| Resource | string | The bucket or object that is involved in the error. |
| RequestId | string | Unique identifier for the request. |
| HostId | string | A special token to help AWS troubleshoot problems. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Error",
"type": "object",
"description": "Container for all error elements.",
"properties": {
"Code": {
"type": "string",
"description": "The error code is a string that uniquely identifies an error condition. Examples include NoSuchBucket, NoSuchKey, AccessDenied, InvalidBucketName, etc."
},
"Message": {
"type": "string",
"description": "A human-readable description of the error."
},
"Resource": {
"type": "string",
"description": "The bucket or object that is involved in the error."
},
"RequestId": {
"type": "string",
"description": "Unique identifier for the request."
},
"HostId": {
"type": "string",
"description": "A special token to help AWS troubleshoot problems."
}
}
}