IPWorks Cloud 2020 Python Edition

Questions / Feedback?

on_multipart_upload_list Event

Fires once for each multipart upload when ListMultipartUploads is called.

Syntax

class AmazonGlacierMultipartUploadListEventParams(object):
  @property
  def archive_description() -> str: ...
  @property
  def creation_date() -> str: ...
  @property
  def upload_id() -> str: ...
  @property
  def vault_arn() -> str: ...
  @property
  def part_size() -> int: ...

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

Remarks

This event fires for each multipart upload returned when calling list_multipart_uploads.

ArchiveDescription is the archive description (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.

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

PartSize is the part size in bytes. This is specified by the PartSize setting and is used when start_multipart_upload is called.

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