@Generated(value="software.amazon.awssdk:codegen") public enum DataIdentifierSeverity extends Enum<DataIdentifierSeverity>
The severity of a finding, ranging from LOW, for least severe, to HIGH, for most severe. Valid values are:
| Enum Constant and Description |
|---|
HIGH |
LOW |
MEDIUM |
UNKNOWN_TO_SDK_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static DataIdentifierSeverity |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<DataIdentifierSeverity> |
knownValues()
|
String |
toString() |
static DataIdentifierSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataIdentifierSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataIdentifierSeverity LOW
public static final DataIdentifierSeverity MEDIUM
public static final DataIdentifierSeverity HIGH
public static final DataIdentifierSeverity UNKNOWN_TO_SDK_VERSION
public static DataIdentifierSeverity[] values()
for (DataIdentifierSeverity c : DataIdentifierSeverity.values()) System.out.println(c);
public static DataIdentifierSeverity 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<DataIdentifierSeverity>public static DataIdentifierSeverity fromValue(String value)
value - real valuepublic static Set<DataIdentifierSeverity> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known DataIdentifierSeveritysCopyright © 2021. All rights reserved.