IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

PartList Event

Fires once for each part when calling ListParts.

Syntax

public event OnPartListHandler OnPartList;

public delegate void OnPartListHandler(object sender, AmazonglacierPartListEventArgs e);

public class AmazonglacierPartListEventArgs : EventArgs {
  public string ArchiveDescription { get; }
  public string CreationDate { get; }
  public string UploadId { get; }
  public long StartPosition { get; }
  public long Size { get; }
  public string SHA256TreeHash { get; }
  public string VaultArn { get; }
}
Public Event OnPartList As OnPartListHandler

Public Delegate Sub OnPartListHandler(sender As Object, e As AmazonglacierPartListEventArgs)

Public Class AmazonglacierPartListEventArgs Inherits EventArgs
  Public ReadOnly Property ArchiveDescription As String
  Public ReadOnly Property CreationDate As String
  Public ReadOnly Property UploadId As String
  Public ReadOnly Property StartPosition As Long
  Public ReadOnly Property Size As Long
  Public ReadOnly Property SHA256TreeHash As String
  Public ReadOnly Property VaultArn As String
End Class

Remarks

This event fires once for each part when calling ListParts.

ArchiveDescription is the description of the archive (if any).

CreationDate is the UTC time that the multipart upload was started. This is a string representation of ISO 8601 date format. For example: "2012-03-20T17:03:43.221Z".

UploadId is the Id of the multipart upload associated with this part.

StartPosition is the byte offset in the archive of the current part.

Size is the part size in bytes.

SHA256TreeHash is the SHA256 tree hash value that Amazon calculated for the part.

VaultArn is the Amazon Resource Name (ARN) of the Vault in which the archive is created.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 .NET Edition - Version 20.0 [Build 8265]