BucketList Event

Fires once for each bucket returned when listing buckets.

Syntax

public class DefaultS3clientEventListener implements S3clientEventListener {
  ...
  public void bucketList(S3clientBucketListEvent e) {}
  ...
}

public class S3clientBucketListEvent {
  public String bucketName;
  public String creationDate;
  public String ownerId;
  public String ownerName;
}

Remarks

This event fires once for each bucket returned when ListBuckets is called.

BucketName reflects the name of the bucket.

CreationDate reflects the bucket's creation date.

OwnerId and OwnerName reflect the Id and display name of the bucket's owner, respectively.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks S3 2020 Java Edition - Version 20.0 [Build 8178]