We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d8904 commit 18ecdbdCopy full SHA for 18ecdbd
bucket_inventory.go
@@ -15,9 +15,15 @@ type BucketGetInventoryResult BucketPutInventoryOptions
15
// BucketListInventoryConfiguartion same struct to options
16
type BucketListInventoryConfiguartion BucketPutInventoryOptions
17
18
+type BucketInventoryFilterPeriod struct {
19
+ StartTime int64 `xml:"StartTime,omitempty"`
20
+ EndTime int64 `xml:"EndTime,omitempty"`
21
+}
22
+
23
// BucketInventoryFilter ...
24
type BucketInventoryFilter struct {
- Prefix string `xml:"Prefix,omitempty"`
25
+ Prefix string `xml:"Prefix,omitempty"`
26
+ Period *BucketInventoryFilterPeriod `xml:"Period,omitempty"`
27
}
28
29
// BucketInventoryOptionalFields ...
0 commit comments