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::SecurityHub::StringFilter; use Moose; has Comparison => (is => 'ro', isa => 'Str'); has Value => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::SecurityHub::StringFilter =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::SecurityHub::StringFilter object: $service_obj->Method(Att1 => { Comparison => $value, ..., Value => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SecurityHub::StringFilter object: $result = $service_obj->Method(...); $result->Att1->Comparison =head1 DESCRIPTION A string filter for querying findings. =head1 ATTRIBUTES =head2 Comparison => Str The condition to apply to a string value when querying for findings. To search for values that contain the filter criteria value, use one of the following comparison operators: =over =item * To search for values that exactly match the filter value, use C. For example, the filter C only matches findings that have a resource type of C. =item * To search for values that start with the filter value, use C. For example, the filter C matches findings that have a resource type that starts with C. Findings with a resource type of C, C, or C would all match. =back C and C filters on the same field are joined by C. A finding matches if it matches any one of those filters. To search for values that do not contain the filter criteria value, use one of the following comparison operators: =over =item * To search for values that do not exactly match the filter value, use C. For example, the filter C matches findings that have a resource type other than C. =item * To search for values that do not start with the filter value, use C. For example, the filter C matches findings that have a resource type that does not start with C. Findings with a resource type of C, C, or C would all be excluded from the results. =back C and C filters on the same field are joined by C. A finding matches only if it matches all of those filters. For filters on the same field, you cannot provide both an C filter and a C or C filter. Combining filters in this way always returns an error, even if the provided filter values would return valid results. You can combine C filters with C or C filters for the same field. Security Hub first processes the C filters, then the C or C filters. For example, for the following filter, Security Hub first identifies findings that have resource types that start with either C or C. It then excludes findings that have a resource type of C and findings that have a resource type of C. =over =item * C =item * C =item * C =item * C =back =head2 Value => Str The string filter value. Filter values are case sensitive. For example, the product name for control-based findings is C. If you provide C as the filter text, then there is no match. =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