package
Version:
v0.5.0
Opens a new window with list of versions in this module.
Published: Feb 2, 2019
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 10
Opens a new window with list of known importers.
Documentation
¶
View Source
var Xmlns = "http://s3.amazonaws.com/doc/2006-03-01"
type Bucket struct {
Name string `xml:"Name"`
CreationDate string `xml:"CreationDate"`
LocationConstraint string `xml:"LocationConstraint"`
}
type CompleteMultipartUpload struct {
Xmlns string `xml:"xmlns,attr"`
Part []Part `xml:"Part"`
}
type CompleteMultipartUploadResult struct {
Xmlns string `xml:"xmlns,attr"`
Location string `xml:"Location"`
Bucket string `xml:"Bucket"`
Key string `xml:"Key"`
ETag string `xml:"ETag"`
}
type CreateBucketConfiguration struct {
Xmlns string `xml:"xmlns,attr"`
LocationConstraint string `xml:"LocationConstraint"`
}
type InitiateMultipartUploadResult struct {
Xmlns string `xml:"xmlns,attr"`
Bucket string `xml:"Bucket"`
Key string `xml:"Key"`
UploadId string `xml:"UploadId"`
}
type ListAllMyBucketsResult struct {
Xmlns string `xml:"xmlns,attr"`
Owner Owner `xml:"Owner"`
Buckets []Bucket `xml:"Buckets"`
}
type ListPartsOutput struct {
Xmlns string `xml:"xmlns,attr"`
Bucket string `xml:"Bucket"`
Key string `xml:"Key"`
UploadId string `xml:"UploadId"`
MaxParts int `xml:"MaxParts"`
IsTruncated bool `xml:"IsTruncated"`
Owner Owner `xml:"Owner"`
Parts []Part `xml:"Part"`
}
type Owner struct {
ID string `xml:"ID"`
DisplayName string `xml:"DisplayName"`
}
type Part struct {
PartNumber int64 `xml:"PartNumber"`
ETag string `xml:"ETag"`
}
type UploadPartResult struct {
Xmlns string `xml:"xmlns,attr"`
PartNumber int64 `xml:"PartNumber"`
ETag string `xml:"ETag"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.