PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::WAFV2::FieldToMatch; use Moose; has AllQueryArguments => (is => 'ro', isa => 'Paws::WAFV2::AllQueryArguments'); has Body => (is => 'ro', isa => 'Paws::WAFV2::Body'); has JsonBody => (is => 'ro', isa => 'Paws::WAFV2::JsonBody'); has Method => (is => 'ro', isa => 'Paws::WAFV2::Method'); has QueryString => (is => 'ro', isa => 'Paws::WAFV2::QueryString'); has SingleHeader => (is => 'ro', isa => 'Paws::WAFV2::SingleHeader'); has SingleQueryArgument => (is => 'ro', isa => 'Paws::WAFV2::SingleQueryArgument'); has UriPath => (is => 'ro', isa => 'Paws::WAFV2::UriPath'); 1; ### main pod documentation begin ### =head1 NAME Paws::WAFV2::FieldToMatch =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::WAFV2::FieldToMatch object: $service_obj->Method(Att1 => { AllQueryArguments => $value, ..., UriPath => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::WAFV2::FieldToMatch object: $result = $service_obj->Method(...); $result->Att1->AllQueryArguments =head1 DESCRIPTION The part of a web request that you want WAF to inspect. Include the single C type that you want to inspect, with additional specifications as needed, according to the type. You specify a single request component in C for each rule statement that requires it. To inspect more than one component of a web request, create a separate rule statement for each component. =head1 ATTRIBUTES =head2 AllQueryArguments => L Inspect all query arguments. =head2 Body => L Inspect the request body as plain text. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form. Note that only the first 8 KB (8192 bytes) of the request body are forwarded to WAF for inspection by the underlying host service. If you don't need to inspect more than 8 KB, you can guarantee that you don't allow additional bytes in by combining a statement that inspects the body of the web request, such as ByteMatchStatement or RegexPatternSetReferenceStatement, with a SizeConstraintStatement that enforces an 8 KB size limit on the body of the request. WAF doesn't support inspecting the entire contents of web requests whose bodies exceed the 8 KB limit. =head2 JsonBody => L Inspect the request body as JSON. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form. Note that only the first 8 KB (8192 bytes) of the request body are forwarded to WAF for inspection by the underlying host service. If you don't need to inspect more than 8 KB, you can guarantee that you don't allow additional bytes in by combining a statement that inspects the body of the web request, such as ByteMatchStatement or RegexPatternSetReferenceStatement, with a SizeConstraintStatement that enforces an 8 KB size limit on the body of the request. WAF doesn't support inspecting the entire contents of web requests whose bodies exceed the 8 KB limit. =head2 Method => L Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform. =head2 QueryString => L Inspect the query string. This is the part of a URL that appears after a C character, if any. =head2 SingleHeader => L Inspect a single header. Provide the name of the header to inspect, for example, C or C. This setting isn't case sensitive. Example JSON: C<"SingleHeader": { "Name": "haystack" }> =head2 SingleQueryArgument => L Inspect a single query argument. Provide the name of the query argument to inspect, such as I or I. The name can be up to 30 characters long and isn't case sensitive. This is used only to indicate the web request component for WAF to inspect, in the FieldToMatch specification. Example JSON: C<"SingleQueryArgument": { "Name": "myArgument" }> =head2 UriPath => L Inspect the request URI path. This is the part of a web request that identifies a resource, for example, C. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut