LIST MAX KEYS
Versionshinweise | 24.5, 24.4.1, 24.3.4, 24.2.7 |
---|
Code
String AwsS3Constants.LIST_MAX_KEYS
Beschreibung
Schlüssel für den Zugriff auf die max. Anzahl der Ergebnisobjekte (int) innerhalb einer Listenoperation.
Beispiele
Map<String, Object> response = AwsS3Utils.listObjects(awsS3config, "subPath");
if (response.get(AwsS3Constants.LIST_IS_TRUNCATED)) {
// Query exceeded possible result amount
int maxEntries = response.get(AwsS3Constants.LIST_MAX_KEYS)
}