Skip to main content
Skip table of contents

OBJECTS

Versionshinweise

24.5, 24.4.1, 24.3.4, 24.2.7

Code

GROOVY
String AwsS3Constants.OBJECTS

Beschreibung

Schlüssel für den Zugriff auf die Objekte (Map<String, Object>) innerhalb 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()) {
    int hashCode = object.get(AwsS3Constants.OBJECTS_HASH_CODE)
  }
}
JavaScript errors detected

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

If this problem persists, please contact our support.