File: types.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 662,428 kB
  • sloc: java: 16,875; makefile: 432; sh: 175
file content (34 lines) | stat: -rw-r--r-- 649 bytes parent folder | download | duplicates (5)
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