public enum InvalidCredentials extends Enum<InvalidCredentials>
| Enum Constant and Description |
|---|
INVALID_CLIENT_TOKEN_ID
The X.509 certificate or AWS access key ID provided does not exist in our records.
HTTP Status Code: 403 |
SIGNATURE_DOES_NOT_MATCH
Thrown for example when AWS secret key does not match the AWS access key ID.
HTTP Status Code: 403 |
| Modifier and Type | Method and Description |
|---|---|
static Set<String> |
getErrorCodes() |
static InvalidCredentials |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvalidCredentials[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidCredentials INVALID_CLIENT_TOKEN_ID
public static final InvalidCredentials SIGNATURE_DOES_NOT_MATCH
public static InvalidCredentials[] values()
for (InvalidCredentials c : InvalidCredentials.values()) System.out.println(c);
public static InvalidCredentials valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 MuleSoft, Inc.. All rights reserved.