OBJECT URL
Versionshinweise | 24.5, 24.4.1, 24.3.4, 24.2.7 |
---|
Code
String AwsS3Constants.OBJECT_URL
Beschreibung
Schlüssel für den Zugriff auf die Objekt-URL (java.net.URL) einer Operation.
Beispiele
final File object = new File("../file.jpg");
Map<String, Object> response = AwsS3Utils.putObject(awsS3config, "file.jpg", object);
if (response.get(AwsS3Constants.IS_SUCCESSFUL)) {
URL objectUrl = response.get(AwsS3Constants.OBJECT_URL);
}