Enum OpsItemFilterKey
- java.lang.Object
-
- java.lang.Enum<OpsItemFilterKey>
-
- software.amazon.awssdk.services.ssm.model.OpsItemFilterKey
-
- All Implemented Interfaces:
Serializable,Comparable<OpsItemFilterKey>
@Generated("software.amazon.awssdk:codegen") public enum OpsItemFilterKey extends Enum<OpsItemFilterKey>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OpsItemFilterKeyfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<OpsItemFilterKey>knownValues()StringtoString()static OpsItemFilterKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static OpsItemFilterKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATUS
public static final OpsItemFilterKey STATUS
-
CREATED_BY
public static final OpsItemFilterKey CREATED_BY
-
SOURCE
public static final OpsItemFilterKey SOURCE
-
PRIORITY
public static final OpsItemFilterKey PRIORITY
-
TITLE
public static final OpsItemFilterKey TITLE
-
OPS_ITEM_ID
public static final OpsItemFilterKey OPS_ITEM_ID
-
CREATED_TIME
public static final OpsItemFilterKey CREATED_TIME
-
LAST_MODIFIED_TIME
public static final OpsItemFilterKey LAST_MODIFIED_TIME
-
ACTUAL_START_TIME
public static final OpsItemFilterKey ACTUAL_START_TIME
-
ACTUAL_END_TIME
public static final OpsItemFilterKey ACTUAL_END_TIME
-
PLANNED_START_TIME
public static final OpsItemFilterKey PLANNED_START_TIME
-
PLANNED_END_TIME
public static final OpsItemFilterKey PLANNED_END_TIME
-
OPERATIONAL_DATA
public static final OpsItemFilterKey OPERATIONAL_DATA
-
OPERATIONAL_DATA_KEY
public static final OpsItemFilterKey OPERATIONAL_DATA_KEY
-
OPERATIONAL_DATA_VALUE
public static final OpsItemFilterKey OPERATIONAL_DATA_VALUE
-
RESOURCE_ID
public static final OpsItemFilterKey RESOURCE_ID
-
AUTOMATION_ID
public static final OpsItemFilterKey AUTOMATION_ID
-
CATEGORY
public static final OpsItemFilterKey CATEGORY
-
SEVERITY
public static final OpsItemFilterKey SEVERITY
-
OPS_ITEM_TYPE
public static final OpsItemFilterKey OPS_ITEM_TYPE
-
CHANGE_REQUEST_BY_REQUESTER_ARN
public static final OpsItemFilterKey CHANGE_REQUEST_BY_REQUESTER_ARN
-
CHANGE_REQUEST_BY_REQUESTER_NAME
public static final OpsItemFilterKey CHANGE_REQUEST_BY_REQUESTER_NAME
-
CHANGE_REQUEST_BY_APPROVER_ARN
public static final OpsItemFilterKey CHANGE_REQUEST_BY_APPROVER_ARN
-
CHANGE_REQUEST_BY_APPROVER_NAME
public static final OpsItemFilterKey CHANGE_REQUEST_BY_APPROVER_NAME
-
CHANGE_REQUEST_BY_TEMPLATE
public static final OpsItemFilterKey CHANGE_REQUEST_BY_TEMPLATE
-
CHANGE_REQUEST_BY_TARGETS_RESOURCE_GROUP
public static final OpsItemFilterKey CHANGE_REQUEST_BY_TARGETS_RESOURCE_GROUP
-
INSIGHT_BY_TYPE
public static final OpsItemFilterKey INSIGHT_BY_TYPE
-
ACCOUNT_ID
public static final OpsItemFilterKey ACCOUNT_ID
-
UNKNOWN_TO_SDK_VERSION
public static final OpsItemFilterKey UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static OpsItemFilterKey[] 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 (OpsItemFilterKey c : OpsItemFilterKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpsItemFilterKey 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<OpsItemFilterKey>
-
fromValue
public static OpsItemFilterKey fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- OpsItemFilterKey corresponding to the value
-
knownValues
public static Set<OpsItemFilterKey> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownOpsItemFilterKeys
-
-