Skip to main content
Skip table of contents

STATUS CODE

Versionshinweise

24.5, 24.4.1, 24.3.4, 24.2.7

Code

GROOVY
String AwsS3Constants.STATUS_CODE

Beschreibung

Schlüssel für den Zugriff auf den Statuscode (int) 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) {
  // success
} else {
  // error
}
JavaScript errors detected

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

If this problem persists, please contact our support.