Class Batchsigneds3uploadResponseResultsValue
Namespace: Autodesk.Oss.Model
Assembly: Autodesk.Oss.dll
Batchsigneds3uploadResponseResultsValue
[DataContract]
public class Batchsigneds3uploadResponseResultsValue
Inheritance
Inherited Members
object.Equals(object) , object.Equals(object, object) , object.GetHashCode() , object.GetType() , object.MemberwiseClone() , object.ReferenceEquals(object, object) , object.ToString()
Constructors
Batchsigneds3uploadResponseResultsValue()
Initializes a new instance of the
public Batchsigneds3uploadResponseResultsValue()
Properties
Reason
Describes an error that was encountered. Returned only if the signed URL request for that object failed.
[DataMember(Name = "reason", EmitDefaultValue = false)]
public string Reason { get; set; }
Property Value
Status
Returned only if the signed URL request for that object failed.
[DataMember(Name = "status", EmitDefaultValue = false)]
public string Status { get; set; }
Property Value
UploadExpiration
The deadline to call Complete Batch Upload to S3 Signed URL for the object. If not completed by this time, all uploaded data for this session will be discarded.
[DataMember(Name = "uploadExpiration", EmitDefaultValue = false)]
public string UploadExpiration { get; set; }
Property Value
UploadKey
An ID that uniquely identifies the upload session. It allows OSS to differentiate between fresh upload attempts from attempts to resume uploading data for an active upload session, in case of network interruptions. You must provide this value when:
- Re-requesting chunk URLs for an active upload session.
- When calling the Complete Batch Upload to S3 Signed URL operation to end an active upload session.
[DataMember(Name = "uploadKey", EmitDefaultValue = false)]
public string UploadKey { get; set; }
Property Value
UrlExpiration
The date and time, in the ISO 8601 format, indicating when the signed URLs will expire.
[DataMember(Name = "urlExpiration", EmitDefaultValue = false)]
public string UrlExpiration { get; set; }
Property Value
Urls
An array of signed URLs. For a single-part upload, this will only include a single URL. For a multipart upload, there will be one for each chunk of a multipart upload; the index of the URL in the array corresponds to the part number of the chunk.
[DataMember(Name = "urls", EmitDefaultValue = false)]
public List<string> Urls { get; set; }
Property Value
Methods
ToString()
Returns the string presentation of the object.
public override string ToString()
Returns
String presentation of the object.