Class ListMultipartUploadsRequest
Container for the parameters to the ListMultipartUploads operation.
This operation lists in-progress multipart uploads.
public class ListMultipartUploadsRequest : AmazonWebServiceRequest
- Inheritance
-
ListMultipartUploadsRequest
Constructors
ListMultipartUploadsRequest()
public ListMultipartUploadsRequest()
Properties
BucketName
The name of the bucket to which the multipart upload was initiated.
When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using Access Points in the Amazon Simple Storage Service Developer Guide.
When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using S3 on Outposts in the Amazon Simple Storage Service Developer Guide.
public string BucketName { get; set; }
Property Value
Delimiter
Character you use to group keys.
public string Delimiter { get; set; }
Property Value
Encoding
Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
public EncodingType Encoding { get; set; }
Property Value
ExpectedBucketOwner
The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.
public string ExpectedBucketOwner { get; set; }
Property Value
KeyMarker
Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.
public string KeyMarker { get; set; }
Property Value
MaxUploads
Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.
public int MaxUploads { get; set; }
Property Value
Prefix
Lists in-progress uploads only for those keys that begin with the specified prefix.
public string Prefix { get; set; }
Property Value
UploadIdMarker
Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored.
public string UploadIdMarker { get; set; }