Class PasswordField
- java.lang.Object
-
- software.amazon.awssdk.services.wafv2.model.PasswordField
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<PasswordField.Builder,PasswordField>
@Generated("software.amazon.awssdk:codegen") public final class PasswordField extends Object implements SdkPojo, Serializable, ToCopyableBuilder<PasswordField.Builder,PasswordField>
The name of the field in the request payload that contains your customer's password.
This data type is used in the
RequestInspectionandRequestInspectionACFPdata types.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfacePasswordField.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PasswordField.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Stringidentifier()The name of the password field.List<SdkField<?>>sdkFields()static Class<? extends PasswordField.Builder>serializableBuilderClass()PasswordField.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 password 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": { "password": "THE_PASSWORD" } }, the password field specification is/form/password. -
For form encoded payload types, use the HTML form names.
For example, for an HTML form with the input element named
password1, the password field specification ispassword1.
- Returns:
- The name of the password 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": { "password": "THE_PASSWORD" } }, the password field specification is/form/password. -
For form encoded payload types, use the HTML form names.
For example, for an HTML form with the input element named
password1, the password field specification ispassword1.
-
-
-
toBuilder
public PasswordField.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<PasswordField.Builder,PasswordField>
-
builder
public static PasswordField.Builder builder()
-
serializableBuilderClass
public static Class<? extends PasswordField.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.
-
-