Struct: s3.ListMultipartUploadsOutput
Implemented Interfaces
s3crypto.Cipher, s3manager.ReadSeekerWriteTo, s3manager.WriterReadFrom
Structure Field Summary collapse
-
Bucket *string
The name of the bucket to which the multipart upload was initiated.
-
CommonPrefixes []*CommonPrefix
If you specify a delimiter in the request, then the result returns each distinct key prefix containing the delimiter in a CommonPrefixes element.
-
Delimiter *string
Contains the delimiter you specified in the request.
-
EncodingType *string
Encoding type used by Amazon S3 to encode object keys in the response.
-
IsTruncated *bool
Indicates whether the returned list of multipart uploads is truncated.
-
KeyMarker *string
The key at or after which the listing began.
-
MaxUploads *int64
Maximum number of multipart uploads that could have been included in the response.
-
NextKeyMarker *string
When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.
-
NextUploadIdMarker *string
When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request.
-
Prefix *string
When a prefix is provided in the request, this field contains the specified prefix.
-
RequestCharged *string
If present, indicates that the requester was successfully charged for the request.
-
UploadIdMarker *string
Upload ID after which listing began.
-
Uploads []*MultipartUpload
Container for elements related to a particular multipart upload.
- _ struct{}
Service Operations collapse
-
GoString() string
operation
GoString returns the string representation.
-
SetBucket(string) *ListMultipartUploadsOutput
operation
SetBucket sets the Bucket field’s value.
-
SetCommonPrefixes([]*CommonPrefix) *ListMultipartUploadsOutput
operation
SetCommonPrefixes sets the CommonPrefixes field’s value.
-
SetDelimiter(string) *ListMultipartUploadsOutput
operation
SetDelimiter sets the Delimiter field’s value.
-
SetEncodingType(string) *ListMultipartUploadsOutput
operation
SetEncodingType sets the EncodingType field’s value.
-
SetIsTruncated(bool) *ListMultipartUploadsOutput
operation
SetIsTruncated sets the IsTruncated field’s value.
-
SetKeyMarker(string) *ListMultipartUploadsOutput
operation
SetKeyMarker sets the KeyMarker field’s value.
-
SetMaxUploads(int64) *ListMultipartUploadsOutput
operation
SetMaxUploads sets the MaxUploads field’s value.
-
SetNextKeyMarker(string) *ListMultipartUploadsOutput
operation
SetNextKeyMarker sets the NextKeyMarker field’s value.
-
SetNextUploadIdMarker(string) *ListMultipartUploadsOutput
operation
SetNextUploadIdMarker sets the NextUploadIdMarker field’s value.
-
SetPrefix(string) *ListMultipartUploadsOutput
operation
SetPrefix sets the Prefix field’s value.
-
SetRequestCharged(string) *ListMultipartUploadsOutput
operation
SetRequestCharged sets the RequestCharged field’s value.
-
SetUploadIdMarker(string) *ListMultipartUploadsOutput
operation
SetUploadIdMarker sets the UploadIdMarker field’s value.
-
SetUploads([]*MultipartUpload) *ListMultipartUploadsOutput
operation
SetUploads sets the Uploads field’s value.
-
String() string
operation
String returns the string representation.
Structure Field Details
Bucket *string
`type:"string"`
The name of the bucket to which the multipart upload was initiated. Does not return the access point ARN or access point alias if used.
CommonPrefixes []*CommonPrefix
`type:"list" flattened:"true"`
If you specify a delimiter in the request, then the result returns each distinct key prefix containing the delimiter in a CommonPrefixes element. The distinct key prefixes are returned in the Prefix child element.
Delimiter *string
`type:"string"`
Contains the delimiter you specified in the request. If you don’t specify a delimiter in your request, this element is absent from the response.
EncodingType *string
`type:"string" enum:"EncodingType"`
Encoding type used by Amazon S3 to encode object keys in the response.
If you specify the encoding-type request parameter, Amazon S3 includes this element in the response, and returns encoded key name values in the following response elements:
Delimiter, KeyMarker, Prefix, NextKeyMarker, Key.
IsTruncated *bool
`type:"boolean"`
Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.
KeyMarker *string
`type:"string"`
The key at or after which the listing began.
MaxUploads *int64
`type:"integer"`
Maximum number of multipart uploads that could have been included in the response.
NextKeyMarker *string
`type:"string"`
When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.
NextUploadIdMarker *string
`type:"string"`
When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request.
Prefix *string
`type:"string"`
When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.
RequestCharged *string
`location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"`
If present, indicates that the requester was successfully charged for the request.
UploadIdMarker *string
`type:"string"`
Upload ID after which listing began.
Uploads []*MultipartUpload
`locationName:"Upload" type:"list" flattened:"true"`
Container for elements related to a particular multipart upload. A response can contain zero or more Upload elements.
_ struct{}
`type:"structure"`
Method Details
func (s ListMultipartUploadsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as “sensitive” in the API will not be included in the string output. The member name will be present, but the value will be replaced with “sensitive”.
16758 16759 16760 |
// File 'service/s3/api.go', line 16758
|
func (s *ListMultipartUploadsOutput) SetBucket(v string) *ListMultipartUploadsOutput
SetBucket sets the Bucket field’s value.
16763 16764 16765 16766 |
// File 'service/s3/api.go', line 16763
|
func (s *ListMultipartUploadsOutput) SetCommonPrefixes(v []*CommonPrefix) *ListMultipartUploadsOutput
SetCommonPrefixes sets the CommonPrefixes field’s value.
16776 16777 16778 16779 |
// File 'service/s3/api.go', line 16776
|
func (s *ListMultipartUploadsOutput) SetDelimiter(v string) *ListMultipartUploadsOutput
SetDelimiter sets the Delimiter field’s value.
16782 16783 16784 16785 |
// File 'service/s3/api.go', line 16782
|
func (s *ListMultipartUploadsOutput) SetEncodingType(v string) *ListMultipartUploadsOutput
SetEncodingType sets the EncodingType field’s value.
16788 16789 16790 16791 |
// File 'service/s3/api.go', line 16788
|
func (s *ListMultipartUploadsOutput) SetIsTruncated(v bool) *ListMultipartUploadsOutput
SetIsTruncated sets the IsTruncated field’s value.
16794 16795 16796 16797 |
// File 'service/s3/api.go', line 16794
|
func (s *ListMultipartUploadsOutput) SetKeyMarker(v string) *ListMultipartUploadsOutput
SetKeyMarker sets the KeyMarker field’s value.
16800 16801 16802 16803 |
// File 'service/s3/api.go', line 16800
|
func (s *ListMultipartUploadsOutput) SetMaxUploads(v int64) *ListMultipartUploadsOutput
SetMaxUploads sets the MaxUploads field’s value.
16806 16807 16808 16809 |
// File 'service/s3/api.go', line 16806
|
func (s *ListMultipartUploadsOutput) SetNextKeyMarker(v string) *ListMultipartUploadsOutput
SetNextKeyMarker sets the NextKeyMarker field’s value.
16812 16813 16814 16815 |
// File 'service/s3/api.go', line 16812
|
func (s *ListMultipartUploadsOutput) SetNextUploadIdMarker(v string) *ListMultipartUploadsOutput
SetNextUploadIdMarker sets the NextUploadIdMarker field’s value.
16818 16819 16820 16821 |
// File 'service/s3/api.go', line 16818
|
func (s *ListMultipartUploadsOutput) SetPrefix(v string) *ListMultipartUploadsOutput
SetPrefix sets the Prefix field’s value.
16824 16825 16826 16827 |
// File 'service/s3/api.go', line 16824
|
func (s *ListMultipartUploadsOutput) SetRequestCharged(v string) *ListMultipartUploadsOutput
SetRequestCharged sets the RequestCharged field’s value.
16830 16831 16832 16833 |
// File 'service/s3/api.go', line 16830
|
func (s *ListMultipartUploadsOutput) SetUploadIdMarker(v string) *ListMultipartUploadsOutput
SetUploadIdMarker sets the UploadIdMarker field’s value.
16836 16837 16838 16839 |
// File 'service/s3/api.go', line 16836
|
func (s *ListMultipartUploadsOutput) SetUploads(v []*MultipartUpload) *ListMultipartUploadsOutput
SetUploads sets the Uploads field’s value.
16842 16843 16844 16845 |
// File 'service/s3/api.go', line 16842
|
func (s ListMultipartUploadsOutput) String() string
String returns the string representation.
API parameter values that are decorated as “sensitive” in the API will not be included in the string output. The member name will be present, but the value will be replaced with “sensitive”.
16749 16750 16751 |
// File 'service/s3/api.go', line 16749
|