IPWorks Cloud 2020 Python Edition

Questions / Feedback?

on_vault_list Event

Fires once for each vault returned when calling ListVaults.

Syntax

class AmazonGlacierVaultListEventParams(object):
  @property
  def creation_date() -> str: ...
  @property
  def last_inventory_date() -> str: ...
  @property
  def vault_arn() -> str: ...
  @property
  def vault_name() -> str: ...
  @property
  def archive_count() -> int: ...
  @property
  def size() -> int: ...

# In class AmazonGlacier:
@property
def on_vault_list() -> Callable[[AmazonGlacierVaultListEventParams], None]: ...
@on_vault_list.setter
def on_vault_list(event_hook: Callable[[AmazonGlacierVaultListEventParams], None]) -> None: ...

Remarks

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

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 Python Edition - Version 20.0 [Build 8265]