@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-17T17:31:18.624Z") public enum UnauthenticatedAction extends java.lang.Enum<UnauthenticatedAction>
Enum Constant and Description |
---|
ALLOW
Allow the request to be forwarded to the target.
|
AUTHENTICATE
Redirect the request to the IdP authorization endpoint.
|
DENY
Return an HTTP 401 Unauthorized error.
|
Modifier and Type | Method and Description |
---|---|
static UnauthenticatedAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnauthenticatedAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnauthenticatedAction DENY
public static final UnauthenticatedAction ALLOW
public static final UnauthenticatedAction AUTHENTICATE
public static UnauthenticatedAction[] values()
for (UnauthenticatedAction c : UnauthenticatedAction.values()) System.out.println(c);
public static UnauthenticatedAction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null