Interface CfnWebACL.FieldIdentifierProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.FieldIdentifierProperty.Jsii$Proxy
- Enclosing class:
- CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.FieldIdentifierProperty
extends software.amazon.jsii.JsiiSerializable
The identifier of the username or password field, used in the
ManagedRuleGroupConfig settings.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.wafv2.*;
FieldIdentifierProperty fieldIdentifierProperty = FieldIdentifierProperty.builder()
.identifier("identifier")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.FieldIdentifierPropertystatic final classAn implementation forCfnWebACL.FieldIdentifierProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the username or password field, used in theManagedRuleGroupConfigsettings.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentifier
The name of the username or password field, used in theManagedRuleGroupConfigsettings.When the
PayloadTypeisJSON, the identifier must be in JSON pointer syntax. For example/form/username. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer .When the
PayloadTypeisFORM_ENCODED, use the HTML form names. For example,username. -
builder
-