@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum RetrievalMode extends Enum<RetrievalMode>
The access method to use when retrieving occurrences of sensitive data reported by findings. Valid values are:
| Enum Constant and Description |
|---|
ASSUME_ROLE |
CALLER_CREDENTIALS |
| Modifier and Type | Method and Description |
|---|---|
static RetrievalMode |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static RetrievalMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RetrievalMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RetrievalMode CALLER_CREDENTIALS
public static final RetrievalMode ASSUME_ROLE
public static RetrievalMode[] values()
for (RetrievalMode c : RetrievalMode.values()) System.out.println(c);
public static RetrievalMode 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 nullpublic String toString()
toString in class Enum<RetrievalMode>public static RetrievalMode fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.