public static enum ServiceIndex.AuthSchemeMode extends java.lang.Enum<ServiceIndex.AuthSchemeMode>
ServiceIndex.getEffectiveAuthSchemes(software.amazon.smithy.model.shapes.ToShapeId).| Enum Constant and Description |
|---|
MODELED
Use only the modeled auth schemes.
|
NO_AUTH_AWARE
Use the modeled auth schemes, as well as the synthetic
NoAuthTrait where applicable. |
| Modifier and Type | Method and Description |
|---|---|
static ServiceIndex.AuthSchemeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceIndex.AuthSchemeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceIndex.AuthSchemeMode MODELED
public static final ServiceIndex.AuthSchemeMode NO_AUTH_AWARE
NoAuthTrait where applicable.
The Smithy Reference Architecture recommends using the smithy.api#noAuth auth scheme to represent
no authentication which is available as the NoAuthTrait.
public static ServiceIndex.AuthSchemeMode[] values()
for (ServiceIndex.AuthSchemeMode c : ServiceIndex.AuthSchemeMode.values()) System.out.println(c);
public static ServiceIndex.AuthSchemeMode 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