Skip to main content
Skip table of contents

OBJECTS KEY

Versionshinweise

24.5, 24.4.1, 24.3.4, 24.2.7

Code

GROOVY
String AwsS3Constants.OBJECTS_KEY

Beschreibung

Schlüssel für den Zugriff auf den Schlüssel des Objektes (String) 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()) {
    String key = object.get(AwsS3Constants.OBJECTS_KEY)
  }
}
JavaScript errors detected

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

If this problem persists, please contact our support.