Class ListMultipartUploadsResponse
Returns information about the ListMultipartUploads response and response metadata.
public class ListMultipartUploadsResponse : AmazonWebServiceResponse
- Inheritance
-
ListMultipartUploadsResponse
Constructors
ListMultipartUploadsResponse()
public ListMultipartUploadsResponse()
Properties
BucketName
The name of the bucket to which the multipart upload was initiated.
public string BucketName { get; set; }
Property Value
CommonPrefixes
Gets the CommonPrefixes property. A response can contain CommonPrefixes only if you specify a delimiter. When you do, CommonPrefixes contains all (if there are any) keys between Prefix and the next occurrence of the string specified by delimiter. In effect, CommonPrefixes lists keys that act like subdirectories in the directory specified by Prefix. For example, if prefix is notes/ and delimiter is a slash (/), in notes/summer/july, the common prefix is notes/summer/.
public List<string> CommonPrefixes { get; }
Property Value
Delimiter
Gets and sets the Delimiter property.
public string Delimiter { get; set; }
Property Value
IsTruncated
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.
public bool IsTruncated { get; set; }
Property Value
KeyMarker
The key at or after which the listing began.
public string KeyMarker { get; set; }
Property Value
MaxUploads
Maximum number of multipart uploads that could have been included in the response.
public int MaxUploads { get; set; }
Property Value
MultipartUploads
Gets and sets the MultipartUploads property.
Container for elements related to a particular multipart upload. A response can contain zero or more Upload elements.
public List<MultipartUpload> MultipartUploads { get; set; }
Property Value
NextKeyMarker
When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.
public string NextKeyMarker { get; set; }
Property Value
NextUploadIdMarker
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.
public string NextUploadIdMarker { get; set; }
Property Value
Prefix
Gets and sets the Prefix property.
public string Prefix { get; set; }
Property Value
UploadIdMarker
Upload ID after which listing began.
public string UploadIdMarker { get; set; }