Amazon S3 · Schema
ListBucketResult
Container for the result of the ListObjectsV2 operation.
ArchiveBackupCloud StorageData StorageObject StorageScalable Storage
Properties
| Name | Type | Description |
|---|---|---|
| IsTruncated | boolean | Set to false if all of the results were returned. Set to true if more keys are available to return. |
| Contents | array | |
| Name | string | Bucket name. |
| Prefix | string | Keys that begin with the indicated prefix. |
| Delimiter | string | Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element. |
| MaxKeys | integer | Sets the maximum number of keys returned in the response. |
| CommonPrefixes | array | |
| EncodingType | string | Encoding type used by Amazon S3 to encode object key names. |
| KeyCount | integer | The number of keys returned with this request. |
| ContinuationToken | string | If ContinuationToken was sent with the request, it is included in the response. |
| NextContinuationToken | string | NextContinuationToken is sent when isTruncated is true, which indicates that there are more keys to return. |
| StartAfter | string | If StartAfter was sent with the request, it is included in the response. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ListBucketResult",
"type": "object",
"description": "Container for the result of the ListObjectsV2 operation.",
"properties": {
"IsTruncated": {
"type": "boolean",
"description": "Set to false if all of the results were returned. Set to true if more keys are available to return."
},
"Contents": {
"type": "array"
},
"Name": {
"type": "string",
"description": "Bucket name."
},
"Prefix": {
"type": "string",
"description": "Keys that begin with the indicated prefix."
},
"Delimiter": {
"type": "string",
"description": "Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element."
},
"MaxKeys": {
"type": "integer",
"description": "Sets the maximum number of keys returned in the response."
},
"CommonPrefixes": {
"type": "array"
},
"EncodingType": {
"type": "string",
"description": "Encoding type used by Amazon S3 to encode object key names."
},
"KeyCount": {
"type": "integer",
"description": "The number of keys returned with this request."
},
"ContinuationToken": {
"type": "string",
"description": "If ContinuationToken was sent with the request, it is included in the response."
},
"NextContinuationToken": {
"type": "string",
"description": "NextContinuationToken is sent when isTruncated is true, which indicates that there are more keys to return."
},
"StartAfter": {
"type": "string",
"description": "If StartAfter was sent with the request, it is included in the response."
}
}
}