IPWorks S3 2020 Kotlin Edition

Questions / Feedback?

MetadataList Event

Fires once for each metadata item returned when object information and metadata is retrieved.

Syntax

public open class DefaultS3clientEventListener : S3clientEventListener {
  ...
  public override fun metadataList(e: S3clientMetadataListEvent) {}
  ...
}

public class S3clientMetadataListEvent {
  val name: String?
  val value: String?
}

Remarks

This event fires once for each metadata item returned when GetObjectInfo is called.

Name is the name of the metadata item, without the service-specific prefix (e.g., x-amz-meta-, x-goog-meta-, etc.). Keep in mind that the server stores metadata names in lowercase.

Value is the metadata item's value.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks S3 2020 Kotlin Edition - Version 20.0 [Build 7941]