Enum LogSourceResource.Type
- java.lang.Object
-
- java.lang.Enum<LogSourceResource.Type>
-
- software.amazon.awssdk.services.securitylake.model.LogSourceResource.Type
-
- All Implemented Interfaces:
Serializable,Comparable<LogSourceResource.Type>
- Enclosing class:
- LogSourceResource
public static enum LogSourceResource.Type extends Enum<LogSourceResource.Type>
- See Also:
LogSourceResource.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS_LOG_SOURCECUSTOM_LOG_SOURCEUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LogSourceResource.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static LogSourceResource.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWS_LOG_SOURCE
public static final LogSourceResource.Type AWS_LOG_SOURCE
-
CUSTOM_LOG_SOURCE
public static final LogSourceResource.Type CUSTOM_LOG_SOURCE
-
UNKNOWN_TO_SDK_VERSION
public static final LogSourceResource.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static LogSourceResource.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LogSourceResource.Type c : LogSourceResource.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogSourceResource.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-