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` package Paws::DynamoDB::Query; use Moose; has AttributesToGet => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has ConditionalOperator => (is => 'ro', isa => 'Str'); has ConsistentRead => (is => 'ro', isa => 'Bool'); has ExclusiveStartKey => (is => 'ro', isa => 'Paws::DynamoDB::Key'); has ExpressionAttributeNames => (is => 'ro', isa => 'Paws::DynamoDB::ExpressionAttributeNameMap'); has ExpressionAttributeValues => (is => 'ro', isa => 'Paws::DynamoDB::ExpressionAttributeValueMap'); has FilterExpression => (is => 'ro', isa => 'Str'); has IndexName => (is => 'ro', isa => 'Str'); has KeyConditionExpression => (is => 'ro', isa => 'Str'); has KeyConditions => (is => 'ro', isa => 'Paws::DynamoDB::KeyConditions'); has Limit => (is => 'ro', isa => 'Int'); has ProjectionExpression => (is => 'ro', isa => 'Str'); has QueryFilter => (is => 'ro', isa => 'Paws::DynamoDB::FilterConditionMap'); has ReturnConsumedCapacity => (is => 'ro', isa => 'Str'); has ScanIndexForward => (is => 'ro', isa => 'Bool'); has Select => (is => 'ro', isa => 'Str'); has TableName => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'Query'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DynamoDB::QueryOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::DynamoDB::Query - Arguments for method Query on L =head1 DESCRIPTION This class represents the parameters used for calling the method Query on the L service. Use the attributes of this class as arguments to method Query. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to Query. =head1 SYNOPSIS my $dynamodb = Paws->service('DynamoDB'); # To query an item # This example queries items in the Music table. The table has a partition key # and sort key (Artist and SongTitle), but this query only specifies the # partition key value. It returns song titles by the artist named "No One You # Know". my $QueryOutput = $dynamodb->Query( 'ExpressionAttributeValues' => { ':v1' => { 'S' => 'No One You Know' } }, 'KeyConditionExpression' => 'Artist = :v1', 'ProjectionExpression' => 'SongTitle', 'TableName' => 'Music' ); # Results: my $ConsumedCapacity = $QueryOutput->ConsumedCapacity; my $Count = $QueryOutput->Count; my $Items = $QueryOutput->Items; my $ScannedCount = $QueryOutput->ScannedCount; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 AttributesToGet => ArrayRef[Str|Undef] This is a legacy parameter. Use C instead. For more information, see AttributesToGet (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.AttributesToGet.html) in the I. =head2 ConditionalOperator => Str This is a legacy parameter. Use C instead. For more information, see ConditionalOperator (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html) in the I. Valid values are: C<"AND">, C<"OR"> =head2 ConsistentRead => Bool Determines the read consistency model: If set to C, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads. Strongly consistent reads are not supported on global secondary indexes. If you query a global secondary index with C set to C, you will receive a C. =head2 ExclusiveStartKey => L The primary key of the first item that this operation will evaluate. Use the value that was returned for C in the previous operation. The data type for C must be String, Number, or Binary. No set data types are allowed. =head2 ExpressionAttributeNames => L One or more substitution tokens for attribute names in an expression. The following are some use cases for using C: =over =item * To access an attribute whose name conflicts with a DynamoDB reserved word. =item * To create a placeholder for repeating occurrences of an attribute name in an expression. =item * To prevent special characters in an attribute name from being misinterpreted in an expression. =back Use the B<#> character in an expression to dereference an attribute name. For example, consider the following attribute name: =over =item * C =back The name of this attribute conflicts with a reserved word, so it cannot be used directly in an expression. (For the complete list of reserved words, see Reserved Words (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) in the I). To work around this, you could specify the following for C: =over =item * C<{"#P":"Percentile"}> =back You could then use this substitution in an expression, as in this example: =over =item * C<#P = :val> =back Tokens that begin with the B<:> character are I, which are placeholders for the actual value at runtime. For more information on expression attribute names, see Specifying Item Attributes (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) in the I. =head2 ExpressionAttributeValues => L One or more values that can be substituted in an expression. Use the B<:> (colon) character in an expression to dereference an attribute value. For example, suppose that you wanted to check whether the value of the I attribute was one of the following: C You would first need to specify C as follows: C<{ ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} }> You could then use these values in an expression, such as this: C For more information on expression attribute values, see Specifying Conditions (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) in the I. =head2 FilterExpression => Str A string that contains conditions that DynamoDB applies after the C operation, but before the data is returned to you. Items that do not satisfy the C criteria are not returned. A C does not allow key attributes. You cannot define a filter expression based on a partition key or a sort key. A C is applied after the items have already been read; the process of filtering does not consume any additional read capacity units. For more information, see Filter Expressions (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#FilteringResults) in the I. =head2 IndexName => Str The name of an index to query. This index can be any local secondary index or global secondary index on the table. Note that if you use the C parameter, you must also provide C =head2 KeyConditionExpression => Str The condition that specifies the key values for items to be retrieved by the C action. The condition must perform an equality test on a single partition key value. The condition can optionally perform one of several comparison tests on a single sort key value. This allows C to retrieve one item with a given partition key value and sort key value, or several items that have the same partition key value but different sort key values. The partition key equality test is required, and must be specified in the following format: C I<=> C<:partitionkeyval> If you also want to provide a condition for the sort key, it must be combined using C with the condition for the sort key. Following is an example, using the B<=> comparison operator for the sort key: C C<=> C<:partitionkeyval> C C C<=> C<:sortkeyval> Valid comparisons for the sort key condition are as follows: =over =item * C C<=> C<:sortkeyval> - true if the sort key value is equal to C<:sortkeyval>. =item * C C> C<:sortkeyval> - true if the sort key value is less than C<:sortkeyval>. =item * C C=> C<:sortkeyval> - true if the sort key value is less than or equal to C<:sortkeyval>. =item * C C> C<:sortkeyval> - true if the sort key value is greater than C<:sortkeyval>. =item * C C= > C<:sortkeyval> - true if the sort key value is greater than or equal to C<:sortkeyval>. =item * C C C<:sortkeyval1> C C<:sortkeyval2> - true if the sort key value is greater than or equal to C<:sortkeyval1>, and less than or equal to C<:sortkeyval2>. =item * C C, C<:sortkeyval> C<)> - true if the sort key value begins with a particular operand. (You cannot use this function with a sort key that is of type Number.) Note that the function name C is case-sensitive. =back Use the C parameter to replace tokens such as C<:partitionval> and C<:sortval> with actual values at runtime. You can optionally use the C parameter to replace the names of the partition key and sort key with placeholder tokens. This option might be necessary if an attribute name conflicts with a DynamoDB reserved word. For example, the following C parameter causes an error because I is a reserved word: =over =item * C =back To work around this, define a placeholder (such a C<#S>) to represent the attribute name I. C then is as follows: =over =item * C<#S = :myval> =back For a list of reserved words, see Reserved Words (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) in the I. For more information on C and C, see Using Placeholders for Attribute Names and Values (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ExpressionPlaceholders.html) in the I. =head2 KeyConditions => L This is a legacy parameter. Use C instead. For more information, see KeyConditions (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.KeyConditions.html) in the I. =head2 Limit => Int The maximum number of items to evaluate (not necessarily the number of matching items). If DynamoDB processes the number of items up to the limit while processing the results, it stops the operation and returns the matching values up to that point, and a key in C to apply in a subsequent operation, so that you can pick up where you left off. Also, if the processed dataset size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation and returns the matching values up to the limit, and a key in C to apply in a subsequent operation to continue the operation. For more information, see Query and Scan (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html) in the I. =head2 ProjectionExpression => Str A string that identifies one or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas. If no attribute names are specified, then all attributes will be returned. If any of the requested attributes are not found, they will not appear in the result. For more information, see Accessing Item Attributes (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) in the I. =head2 QueryFilter => L This is a legacy parameter. Use C instead. For more information, see QueryFilter (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.QueryFilter.html) in the I. =head2 ReturnConsumedCapacity => Str Valid values are: C<"INDEXES">, C<"TOTAL">, C<"NONE"> =head2 ScanIndexForward => Bool Specifies the order for index traversal: If C (default), the traversal is performed in ascending order; if C, the traversal is performed in descending order. Items with the same partition key value are stored in sorted order by sort key. If the sort key data type is Number, the results are stored in numeric order. For type String, the results are stored in order of UTF-8 bytes. For type Binary, DynamoDB treats each byte of the binary data as unsigned. If C is C, DynamoDB returns the results in the order in which they are stored (by sort key value). This is the default behavior. If C is C, DynamoDB reads the results in reverse order by sort key value, and then returns the results to the client. =head2 Select => Str The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. =over =item * C - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. =item * C - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying C. =item * C - Returns the number of matching items, rather than the matching items themselves. =item * C - Returns only the attributes listed in C. This return value is equivalent to specifying C without specifying any value for C nor C are specified, DynamoDB defaults to C when accessing a table, and C when accessing an index. You cannot use both C is C. (This usage is equivalent to specifying C without any value for C can only be C. Any other value for C