Skip to main content
Skip table of contents

STATUS TEXT

Versionshinweise

24.5, 24.4.1, 24.3.4, 24.2.7

Code

GROOVY
String AwsS3Constants.STATUS_TEXT

Beschreibung

Schlüssel für den Zugriff auf den Statustext (String) einer Operation.

Beispiele

GROOVY
File object = new File(".../file.jpg");
Map<String, Object> response = AwsS3Utils.putObject(awsS3config, "file.jpg", object);
 
if (response.get(AwsS3Constants.STATUS_CODE) == 200) {
  String successStatusText = response.get(AwsS3Constants.STATUS_TEXT); 
} else {
  String statusText = response.get(AwsS3Constants.STATUS_TEXT);
}
JavaScript errors detected

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

If this problem persists, please contact our support.