public enum AccessDeniedErrorCodes extends Enum<AccessDeniedErrorCodes>
| Enum Constant and Description |
|---|
ACCESS_DENIED
Error code thrown for example when user is not authorized to assume IAM role.
|
ACCESS_DENIED_EXCEPTION
You do not have sufficient access to perform this action.
HTTP Status Code: 400 |
| Modifier and Type | Method and Description |
|---|---|
static Set<String> |
getErrorCodes() |
static AccessDeniedErrorCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessDeniedErrorCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessDeniedErrorCodes ACCESS_DENIED_EXCEPTION
public static final AccessDeniedErrorCodes ACCESS_DENIED
public static AccessDeniedErrorCodes[] values()
for (AccessDeniedErrorCodes c : AccessDeniedErrorCodes.values()) System.out.println(c);
public static AccessDeniedErrorCodes 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.