Class: Aws::WAFV2::Types::UsernameField
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::UsernameField
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
Note:
When making an API call, you may pass UsernameField data as a hash:
{
identifier: "FieldIdentifier", # required
}
Details about your login page username field, used in a `ManagedRuleGroupConfig`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
The name of the username field.
Instance Attribute Details
#identifier ⇒ String
The name of the username field. For example `/form/username`.
16068 16069 16070 16071 16072 |
# File 'lib/aws-sdk-wafv2/types.rb', line 16068 class UsernameField < Struct.new( :identifier) SENSITIVE = [] include Aws::Structure end |