31 lines
685 B
Go
31 lines
685 B
Go
|
package data
|
||
|
|
||
|
import "encoding/xml"
|
||
|
|
||
|
// Tagging contains tag set.
|
||
|
type Tagging struct {
|
||
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ Tagging"`
|
||
|
TagSet []Tag `xml:"TagSet>Tag"`
|
||
|
}
|
||
|
|
||
|
// Tag is an AWS key-value tag.
|
||
|
type Tag struct {
|
||
|
Key string
|
||
|
Value string
|
||
|
}
|
||
|
|
||
|
type GetObjectTaggingParams struct {
|
||
|
ObjectVersion *ObjectVersion
|
||
|
|
||
|
// NodeVersion can be nil. If not nil we save one request to tree service.
|
||
|
NodeVersion *NodeVersion // optional
|
||
|
}
|
||
|
|
||
|
type PutObjectTaggingParams struct {
|
||
|
ObjectVersion *ObjectVersion
|
||
|
TagSet map[string]string
|
||
|
|
||
|
// NodeVersion can be nil. If not nil we save one request to tree service.
|
||
|
NodeVersion *NodeVersion // optional
|
||
|
}
|