| Package | Description |
|---|---|
| software.amazon.awscdk.services.appsync |
AWS AppSync Construct Library
|
| Modifier and Type | Method and Description |
|---|---|
KeyCondition |
KeyCondition.and(KeyCondition keyCond)
(experimental) Conjunction between two conditions.
|
static KeyCondition |
KeyCondition.beginsWith(String keyName,
String arg)
(experimental) Condition (k, arg).
|
static KeyCondition |
KeyCondition.between(String keyName,
String arg1,
String arg2)
(experimental) Condition k BETWEEN arg1 AND arg2, true if k >= arg1 and k <= arg2.
|
static KeyCondition |
KeyCondition.eq(String keyName,
String arg)
(experimental) Condition k = arg, true if the key attribute k is equal to the Query argument.
|
static KeyCondition |
KeyCondition.ge(String keyName,
String arg)
(experimental) Condition k >= arg, true if the key attribute k is greater or equal to the Query argument.
|
static KeyCondition |
KeyCondition.gt(String keyName,
String arg)
(experimental) Condition k > arg, true if the key attribute k is greater than the the Query argument.
|
static KeyCondition |
KeyCondition.le(String keyName,
String arg)
(experimental) Condition k <= arg, true if the key attribute k is less than or equal to the Query argument.
|
static KeyCondition |
KeyCondition.lt(String keyName,
String arg)
(experimental) Condition k < arg, true if the key attribute k is less than the Query argument.
|
| Modifier and Type | Method and Description |
|---|---|
KeyCondition |
KeyCondition.and(KeyCondition keyCond)
(experimental) Conjunction between two conditions.
|
static MappingTemplate |
MappingTemplate.dynamoDbQuery(KeyCondition cond)
(experimental) Mapping template to query a set of items from a DynamoDB table.
|
static MappingTemplate |
MappingTemplate.dynamoDbQuery(KeyCondition cond,
String indexName)
(experimental) Mapping template to query a set of items from a DynamoDB table.
|
Copyright © 2021. All rights reserved.