Skip to main content
Skip table of contents

OBJECTS SIZE

Versionshinweise

24.5, 24.4.1, 24.3.4, 24.2.7

Code

GROOVY
String AwsS3Constants.OBJECTS_SIZE

Beschreibung

Schlüssel für den Zugriff auf die Größe des Objektes (long) innerhalb eines Ergebniseintrages einer Listenoperation.

Beispiele

GROOVY
Map<String, Object> response = AwsS3Utils.listObjects(awsS3config, "subPath");

if (response.get(AwsS3Constants.IS_SUCCESSFUL)) {
  Map<String, Object> objects = response.get(AwsS3Constants.OBJECTS);

  for (Map<String, Object> object : objects.values()) {
    long size = object.get(AwsS3Constants.OBJECTS_SIZE)
  }
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.