Class EmailField
- java.lang.Object
-
- software.amazon.awssdk.services.wafv2.model.EmailField
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<EmailField.Builder,EmailField>
@Generated("software.amazon.awssdk:codegen") public final class EmailField extends Object implements SdkPojo, Serializable, ToCopyableBuilder<EmailField.Builder,EmailField>
The name of the field in the request payload that contains your customer's email.
This data type is used in the
RequestInspectionACFPdata type.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceEmailField.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EmailField.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Stringidentifier()The name of the email field.List<SdkField<?>>sdkFields()static Class<? extends EmailField.Builder>serializableBuilderClass()EmailField.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
identifier
public final String identifier()
The name of the email field.
How you specify this depends on the request inspection payload type.
-
For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.
For example, for the JSON payload
{ "form": { "email": "THE_EMAIL" } }, the email field specification is/form/email. -
For form encoded payload types, use the HTML form names.
For example, for an HTML form with the input element named
email1, the email field specification isemail1.
- Returns:
- The name of the email field.
How you specify this depends on the request inspection payload type.
-
For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.
For example, for the JSON payload
{ "form": { "email": "THE_EMAIL" } }, the email field specification is/form/email. -
For form encoded payload types, use the HTML form names.
For example, for an HTML form with the input element named
email1, the email field specification isemail1.
-
-
-
toBuilder
public EmailField.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<EmailField.Builder,EmailField>
-
builder
public static EmailField.Builder builder()
-
serializableBuilderClass
public static Class<? extends EmailField.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-