DynamoDB Query
Query a DynamoDB database.
Properties
| Name | Type | |
|---|---|---|
| engine | String=dynamodb:read | |
| credentials | Object | |
| region | String | |
| table_name | String | |
| partition_key | String | |
| query | Object | |
| schema | Object | |
engine
Must be dynamodb:read.
- Required
- Yes
credentials
The AWS credentials.
- Required
- Yes
Properties
| Name | Type | |
|---|---|---|
| access_key_id | String | |
| secret_access_key | String | |
credentials.access_key_id
Access key ID to authenticate with.
- Required
- Yes
credentials.secret_access_key
Secret access key to authenticate with.
- Required
- Yes
region
The region of the DynamoDB database.
- Required
- Yes
table_name
The name of the DynamoDB table.
- Required
- Yes
partition_key
The partition key the DynamoDB table.
- Required
- Yes
query
- Required
- No
Properties
| Name | Type | |
|---|---|---|
| filter | Array | |
| limit | Integer | |
query.filter
- Required
- No
query.filter.field_path
The field path to filter.
query.filter.op
The operation.
- Enum
-
=><>=<=
query.filter.value
The value to compare using the operation.
query.limit
The number of records to fetch.
- Required
- No
schema
Define a schema for the data.
- Required
- Yes