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::DynamoDB::Condition; use Moose; has AttributeValueList => (is => 'ro', isa => 'ArrayRef[Paws::DynamoDB::AttributeValue]'); has ComparisonOperator => (is => 'ro', isa => 'Str', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::DynamoDB::Condition =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::DynamoDB::Condition object: $service_obj->Method(Att1 => { AttributeValueList => $value, ..., ComparisonOperator => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::DynamoDB::Condition object: $result = $service_obj->Method(...); $result->Att1->AttributeValueList =head1 DESCRIPTION Represents the selection criteria for a C or C operation: =over =item * For a C operation, C is used for specifying the C to use when querying a table or an index. For C, only the following comparison operators are supported: C C is also used in a C, which evaluates the query results and returns only the desired values. =item * For a C operation, C is used in a C, which evaluates the scan results and returns only the desired values. =back =head1 ATTRIBUTES =head2 AttributeValueList => ArrayRef[L] One or more values to evaluate against the supplied attribute. The number of values in the list depends on the C being used. For type Number, value comparisons are numeric. String value comparisons for greater than, equals, or less than are based on ASCII character code values. For example, C is greater than C, and C is greater than C. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). For Binary, DynamoDB treats each byte of the binary data as unsigned when it compares binary values. =head2 B ComparisonOperator => Str A comparator for evaluating attributes. For example, equals, greater than, less than, etc. The following comparison operators are available: C The following are descriptions of each comparison operator. =over =item * C : Equal. C is supported for all data types, including lists and maps. C can contain only one C element of type String, Number, Binary, String Set, Number Set, or Binary Set. If an item contains an C element of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not equal C<{"N":"6"}>. Also, C<{"N":"6"}> does not equal C<{"NS":["6", "2", "1"]}>. =item * C : Not equal. C is supported for all data types, including lists and maps. C can contain only one C of type String, Number, Binary, String Set, Number Set, or Binary Set. If an item contains an C of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not equal C<{"N":"6"}>. Also, C<{"N":"6"}> does not equal C<{"NS":["6", "2", "1"]}>. =item * C : Less than or equal. C can contain only one C element of type String, Number, or Binary (not a set type). If an item contains an C element of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not equal C<{"N":"6"}>. Also, C<{"N":"6"}> does not compare to C<{"NS":["6", "2", "1"]}>. =item * C : Less than. C can contain only one C of type String, Number, or Binary (not a set type). If an item contains an C element of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not equal C<{"N":"6"}>. Also, C<{"N":"6"}> does not compare to C<{"NS":["6", "2", "1"]}>. =item * C : Greater than or equal. C can contain only one C element of type String, Number, or Binary (not a set type). If an item contains an C element of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not equal C<{"N":"6"}>. Also, C<{"N":"6"}> does not compare to C<{"NS":["6", "2", "1"]}>. =item * C : Greater than. C can contain only one C element of type String, Number, or Binary (not a set type). If an item contains an C element of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not equal C<{"N":"6"}>. Also, C<{"N":"6"}> does not compare to C<{"NS":["6", "2", "1"]}>. =item * C : The attribute exists. C is supported for all data types, including lists and maps. This operator tests for the existence of an attribute, not its data type. If the data type of attribute "C" is null, and you evaluate it using C, the result is a Boolean C. This result is because the attribute "C" exists; its data type is not relevant to the C comparison operator. =item * C : The attribute does not exist. C is supported for all data types, including lists and maps. This operator tests for the nonexistence of an attribute, not its data type. If the data type of attribute "C" is null, and you evaluate it using C, the result is a Boolean C. This is because the attribute "C" exists; its data type is not relevant to the C comparison operator. =item * C : Checks for a subsequence, or value in a set. C can contain only one C element of type String, Number, or Binary (not a set type). If the target attribute of the comparison is of type String, then the operator checks for a substring match. If the target attribute of the comparison is of type Binary, then the operator looks for a subsequence of the target that matches the input. If the target attribute of the comparison is a set ("C", "C", or "C"), then the operator evaluates to true if it finds an exact match with any member of the set. CONTAINS is supported for lists: When evaluating "C", "C" can be a list; however, "C" cannot be a set, a map, or a list. =item * C : Checks for absence of a subsequence, or absence of a value in a set. C can contain only one C element of type String, Number, or Binary (not a set type). If the target attribute of the comparison is a String, then the operator checks for the absence of a substring match. If the target attribute of the comparison is Binary, then the operator checks for the absence of a subsequence of the target that matches the input. If the target attribute of the comparison is a set ("C", "C", or "C"), then the operator evaluates to true if it I find an exact match with any member of the set. NOT_CONTAINS is supported for lists: When evaluating "C", "C" can be a list; however, "C" cannot be a set, a map, or a list. =item * C : Checks for a prefix. C can contain only one C of type String or Binary (not a Number or a set type). The target attribute of the comparison must be of type String or Binary (not a Number or a set type). =item * C : Checks for matching elements in a list. C can contain one or more C elements of type String, Number, or Binary. These attributes are compared against an existing attribute of an item. If any elements of the input are equal to the item attribute, the expression evaluates to true. =item * C : Greater than or equal to the first value, and less than or equal to the second value. C must contain two C elements of the same type, either String, Number, or Binary (not a set type). A target attribute matches if the target value is greater than, or equal to, the first element and less than, or equal to, the second element. If an item contains an C element of a different type than the one provided in the request, the value does not match. For example, C<{"S":"6"}> does not compare to C<{"N":"6"}>. Also, C<{"N":"6"}> does not compare to C<{"NS":["6", "2", "1"]}> =back For usage examples of C and C, see Legacy Conditional Parameters (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html) in the I. =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