Enum SecurityServiceType
- java.lang.Object
-
- java.lang.Enum<SecurityServiceType>
-
- software.amazon.awssdk.services.fms.model.SecurityServiceType
-
- All Implemented Interfaces:
Serializable,Comparable<SecurityServiceType>
@Generated("software.amazon.awssdk:codegen") public enum SecurityServiceType extends Enum<SecurityServiceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DNS_FIREWALLIMPORT_NETWORK_FIREWALLNETWORK_FIREWALLSECURITY_GROUPS_COMMONSECURITY_GROUPS_CONTENT_AUDITSECURITY_GROUPS_USAGE_AUDITSHIELD_ADVANCEDTHIRD_PARTY_FIREWALLUNKNOWN_TO_SDK_VERSIONWAFWAFV2
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SecurityServiceTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<SecurityServiceType>knownValues()StringtoString()static SecurityServiceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SecurityServiceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WAF
public static final SecurityServiceType WAF
-
WAFV2
public static final SecurityServiceType WAFV2
-
SHIELD_ADVANCED
public static final SecurityServiceType SHIELD_ADVANCED
-
SECURITY_GROUPS_COMMON
public static final SecurityServiceType SECURITY_GROUPS_COMMON
-
SECURITY_GROUPS_CONTENT_AUDIT
public static final SecurityServiceType SECURITY_GROUPS_CONTENT_AUDIT
-
SECURITY_GROUPS_USAGE_AUDIT
public static final SecurityServiceType SECURITY_GROUPS_USAGE_AUDIT
-
NETWORK_FIREWALL
public static final SecurityServiceType NETWORK_FIREWALL
-
DNS_FIREWALL
public static final SecurityServiceType DNS_FIREWALL
-
THIRD_PARTY_FIREWALL
public static final SecurityServiceType THIRD_PARTY_FIREWALL
-
IMPORT_NETWORK_FIREWALL
public static final SecurityServiceType IMPORT_NETWORK_FIREWALL
-
UNKNOWN_TO_SDK_VERSION
public static final SecurityServiceType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SecurityServiceType[] 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 (SecurityServiceType c : SecurityServiceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityServiceType 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<SecurityServiceType>
-
fromValue
public static SecurityServiceType 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:
- SecurityServiceType corresponding to the value
-
knownValues
public static Set<SecurityServiceType> 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 knownSecurityServiceTypes
-
-