1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// A metadata entry for a folder or object.
type Item struct {
// The length of the item in bytes.
ContentLength *int64
// The content type of the item.
ContentType *string
// The ETag that represents a unique instance of the item.
ETag *string
// The date and time that the item was last modified.
LastModified *time.Time
// The name of the item.
Name *string
// The item type (folder or object).
Type ItemType
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|