
Icon | Member | Description |
---|---|---|
![]() | Load<(Of <<'(T>)>>)(Object) |
Loads an object from DynamoDB for the given hash primary key.
Uses DynamoDBContextConfig configured on the context.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Load<(Of <<'(T>)>>)(Object, DynamoDBOperationConfig) |
Loads an object from DynamoDB for the given hash primary key and using the given config.
Passed-in config overrides DynamoDBContextConfig on the context.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Load<(Of <<'(T>)>>)(Object, Object) |
Loads an object from DynamoDB for the given hash-and-range primary key.
Uses DynamoDBContextConfig configured on the context.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Load<(Of <<'(T>)>>)(Object, Object, DynamoDBOperationConfig) |
Loads an object from DynamoDB for the given hash-and-range primary key and using the given config.
Passed-in config overrides DynamoDBContextConfig on the context.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Load<(Of <<'(T>)>>)(T) |
Loads an object from DynamoDB for the given key.
The keyObject is a partially-specified instance, where the
hash/range properties are equal to the key of the item you
want to load.
Uses DynamoDBContextConfig configured on the context.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Load<(Of <<'(T>)>>)(T, DynamoDBOperationConfig) |
Loads an object from DynamoDB for the given key and using the given config.
The keyObject is a partially-specified instance, where the
hash/range properties are equal to the key of the item you
want to load.
Passed-in config overrides DynamoDBContextConfig on the context.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|