OBJECTS KEY
Versionshinweise | 24.5, 24.4.1, 24.3.4, 24.2.7 |
---|
Code
String AwsS3Constants.OBJECTS_KEY
Beschreibung
Schlüssel für den Zugriff auf den Schlüssel des Objektes (String) innerhalb eines Ergebniseintrages einer Listenoperation.
Beispiele
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)
}
}