Class GetObjectAttributesParts
A collection of parts associated with a multipart upload.
public class GetObjectAttributesParts
- Inheritance
-
GetObjectAttributesParts
- Inherited Members
Constructors
GetObjectAttributesParts()
public GetObjectAttributesParts()
Properties
IsTruncated
Gets and sets the property IsTruncated.
Indicates whether the returned list of parts is truncated. A value of true indicates that the list was truncated. A list can be truncated if the number of parts exceeds the limit returned in the
MaxParts
element.
public bool IsTruncated { get; set; }
Property Value
MaxParts
Gets and sets the property MaxParts.
The maximum number of parts allowed in the response.
public int MaxParts { get; set; }
Property Value
NextPartNumberMarker
Gets and sets the property NextPartNumberMarker.
When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request.
public int NextPartNumberMarker { get; set; }
Property Value
PartNumberMarker
Gets and sets the property PartNumberMarker.
The marker for the current part.
public int PartNumberMarker { get; set; }
Property Value
Parts
Gets and sets the property Parts.
Container for elements related to a particular part. A response can contain zero or more
Parts
elements.
public List<ObjectPart> Parts { get; set; }
Property Value
TotalPartsCount
Gets and sets the property TotalPartsCount.
The total number of parts.
public int TotalPartsCount { get; set; }