forked from TrueCloudLab/frostfs-s3-gw
15 lines
377 B
Go
15 lines
377 B
Go
|
package layer
|
||
|
|
||
|
const (
|
||
|
// TODO should be replaced with well-known types from SDK
|
||
|
|
||
|
// ObjectName human readable name of the root object.
|
||
|
ObjectName = "filename"
|
||
|
|
||
|
// ContainerName human readable name of the container (`bucket`).
|
||
|
ContainerName = "dirname"
|
||
|
|
||
|
// LocallyCreationTime human readable creation time of the object / container.
|
||
|
LocallyCreationTime = "created_at"
|
||
|
)
|