Enum GuardrailPiiEntityType
- java.lang.Object
-
- java.lang.Enum<GuardrailPiiEntityType>
-
- software.amazon.awssdk.services.bedrockruntime.model.GuardrailPiiEntityType
-
- All Implemented Interfaces:
Serializable,Comparable<GuardrailPiiEntityType>
@Generated("software.amazon.awssdk:codegen") public enum GuardrailPiiEntityType extends Enum<GuardrailPiiEntityType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuardrailPiiEntityTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<GuardrailPiiEntityType>knownValues()StringtoString()static GuardrailPiiEntityTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GuardrailPiiEntityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDRESS
public static final GuardrailPiiEntityType ADDRESS
-
AGE
public static final GuardrailPiiEntityType AGE
-
AWS_ACCESS_KEY
public static final GuardrailPiiEntityType AWS_ACCESS_KEY
-
AWS_SECRET_KEY
public static final GuardrailPiiEntityType AWS_SECRET_KEY
-
CA_HEALTH_NUMBER
public static final GuardrailPiiEntityType CA_HEALTH_NUMBER
-
CA_SOCIAL_INSURANCE_NUMBER
public static final GuardrailPiiEntityType CA_SOCIAL_INSURANCE_NUMBER
-
CREDIT_DEBIT_CARD_CVV
public static final GuardrailPiiEntityType CREDIT_DEBIT_CARD_CVV
-
CREDIT_DEBIT_CARD_EXPIRY
public static final GuardrailPiiEntityType CREDIT_DEBIT_CARD_EXPIRY
-
CREDIT_DEBIT_CARD_NUMBER
public static final GuardrailPiiEntityType CREDIT_DEBIT_CARD_NUMBER
-
DRIVER_ID
public static final GuardrailPiiEntityType DRIVER_ID
-
EMAIL
public static final GuardrailPiiEntityType EMAIL
-
INTERNATIONAL_BANK_ACCOUNT_NUMBER
public static final GuardrailPiiEntityType INTERNATIONAL_BANK_ACCOUNT_NUMBER
-
IP_ADDRESS
public static final GuardrailPiiEntityType IP_ADDRESS
-
LICENSE_PLATE
public static final GuardrailPiiEntityType LICENSE_PLATE
-
MAC_ADDRESS
public static final GuardrailPiiEntityType MAC_ADDRESS
-
NAME
public static final GuardrailPiiEntityType NAME
-
PASSWORD
public static final GuardrailPiiEntityType PASSWORD
-
PHONE
public static final GuardrailPiiEntityType PHONE
-
PIN
public static final GuardrailPiiEntityType PIN
-
SWIFT_CODE
public static final GuardrailPiiEntityType SWIFT_CODE
-
UK_NATIONAL_HEALTH_SERVICE_NUMBER
public static final GuardrailPiiEntityType UK_NATIONAL_HEALTH_SERVICE_NUMBER
-
UK_NATIONAL_INSURANCE_NUMBER
public static final GuardrailPiiEntityType UK_NATIONAL_INSURANCE_NUMBER
-
UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER
public static final GuardrailPiiEntityType UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER
-
URL
public static final GuardrailPiiEntityType URL
-
USERNAME
public static final GuardrailPiiEntityType USERNAME
-
US_BANK_ACCOUNT_NUMBER
public static final GuardrailPiiEntityType US_BANK_ACCOUNT_NUMBER
-
US_BANK_ROUTING_NUMBER
public static final GuardrailPiiEntityType US_BANK_ROUTING_NUMBER
-
US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER
public static final GuardrailPiiEntityType US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER
-
US_PASSPORT_NUMBER
public static final GuardrailPiiEntityType US_PASSPORT_NUMBER
-
US_SOCIAL_SECURITY_NUMBER
public static final GuardrailPiiEntityType US_SOCIAL_SECURITY_NUMBER
-
VEHICLE_IDENTIFICATION_NUMBER
public static final GuardrailPiiEntityType VEHICLE_IDENTIFICATION_NUMBER
-
UNKNOWN_TO_SDK_VERSION
public static final GuardrailPiiEntityType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static GuardrailPiiEntityType[] 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 (GuardrailPiiEntityType c : GuardrailPiiEntityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuardrailPiiEntityType 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<GuardrailPiiEntityType>
-
fromValue
public static GuardrailPiiEntityType 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:
- GuardrailPiiEntityType corresponding to the value
-
knownValues
public static Set<GuardrailPiiEntityType> 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 knownGuardrailPiiEntityTypes
-
-