Interface- ListOptions
Configuration options for listing Objects in a Bucket.
Properties
endOffset
• Optional
endOffset: string
Filter results to Objects whose names are lexicographically before endOffset
. If startOffset
is also set, the objects listed have names between startOffset
(inclusive) and endOffset
(exclusive).
Defined in
matchGlob
• Optional
matchGlob: string
Glob pattern used to filter results, for example foo*bar
.
Defined in
maxResults
• Optional
maxResults: number
The maximum number of results that can be returned in the response.
Defined in
prefix
• Optional
prefix: string
Filter results to objects who names have the specified prefix
.
Defined in
startOffset
• Optional
startOffset: string
Filter results to objects whose names are lexicographically equal to or after startOffset. If endOffset is also set, the objects listed have names between startOffset
(inclusive) and endOffset
(exclusive).
Defined in
This interface defines configuration options for listing objects in a Bucket. It includes properties such as endOffset
, matchGlob
, maxResults
, prefix
, and startOffset
, each with its description and defined location in the source code.
Was this page helpful?