IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

VaultList Event

Fires once for each vault returned when calling ListVaults.

Syntax

public event OnVaultListHandler OnVaultList;

public delegate void OnVaultListHandler(object sender, AmazonglacierVaultListEventArgs e);

public class AmazonglacierVaultListEventArgs : EventArgs {
  public string CreationDate { get; }
  public string LastInventoryDate { get; }
  public string VaultArn { get; }
  public string VaultName { get; }
  public int ArchiveCount { get; }
  public long Size { get; }
}
Public Event OnVaultList As OnVaultListHandler

Public Delegate Sub OnVaultListHandler(sender As Object, e As AmazonglacierVaultListEventArgs)

Public Class AmazonglacierVaultListEventArgs Inherits EventArgs
  Public ReadOnly Property CreationDate As String
  Public ReadOnly Property LastInventoryDate As String
  Public ReadOnly Property VaultArn As String
  Public ReadOnly Property VaultName As String
  Public ReadOnly Property ArchiveCount As Integer
  Public ReadOnly Property Size As Long
End Class

Remarks

This event fires once for each vault returned when calling ListVaults.

CreationDate is the date the vault was created, in Coordinated Universal Time (UTC). This is a string representation of ISO 8601 date format, for example: 2012-03-20T17:03:43.221Z.

LastInventoryDate is the date of the last vault inventory, in Coordinated Universal Time (UTC). This is a string representation of ISO 8601 date format, for example: 2012-03-20T17:03:43.221Z.

VaultArn is the Amazon Resource Name (ARN) of the vault.

VaultName is the name of the vault.

ArchiveCount is the number of archives in the vault as of LastInventoryDate.

Size is the size of all the archives (including any per-archive overhead) in the vault, as of the last inventory date.

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