BucketList Event

Fires once for each bucket returned when listing buckets.

Syntax

class S3ClientBucketListEventParams {
public:
  const QString &BucketName();
  const QString &CreationDate();
  const QString &OwnerId();
  const QString &OwnerName();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void BucketList(S3ClientBucketListEventParams *e);
// Or, subclass S3Client and override this emitter function. virtual int FireBucketList(S3ClientBucketListEventParams *e) {...}

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 Qt Edition - Version 20.0 [Build 8178]