query_table_py: Query items from DynamoDB Table given specific partition and...

View source: R/dynamodb_python.R

query_table_pyR Documentation

Query items from DynamoDB Table given specific partition and sorting keys

Description

Query items from DynamoDB Table given specific partition and sorting keys

Usage

query_table_py(
  dynamo_table,
  partition_key_name,
  partition_key_values,
  sort_key_name = NULL,
  sort_key_start = NULL,
  sort_key_end = NULL,
  parse = T
)

Arguments

dynamo_table

boto3 DynamoDB Table obtained with get_dynamo_table function

partition_key_name

character, name of the partiton key of the DynamoDB Table. It has to be a string variable.

partition_key_values

vector of values of the partiton key of the DynamoDB Table

sort_key_name

character, name of the sorting key of the DynamoDB Table. It has to be a numeric variable.

sort_key_start

numeric, start value of the sorting key

sort_key_end

numeric, end value of the sorting key

parse

logical, whether to parse Python objects to R objects

Value

tibble


mcanigueral/dutils documentation built on Jan. 25, 2024, 3:34 p.m.