
Icon | Member | Description |
---|---|---|
![]() | Delete<(Of <<'(T>)>>)(T) |
Deletes an item in DynamoDB corresponding to given object.
Uses DynamoDBContextConfig configured on the context.
If SkipVersionCheck=false, will check version of object before deleting.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Delete<(Of <<'(T>)>>)(T, DynamoDBOperationConfig) |
Deletes an item in DynamoDB corresponding to given object.
Passed-in config overrides DynamoDBContextConfig on the context.
If SkipVersionCheck=false, will check version of object before deleting.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Delete<(Of <<'(T>)>>)(Object) |
Deletes an item in DynamoDB corresponding to a given hash primary key.
No version check is done prior to delete.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Delete<(Of <<'(T>)>>)(Object, DynamoDBOperationConfig) |
Deletes an item in DynamoDB corresponding to a given hash primary key.
No version check is done prior to delete.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Delete<(Of <<'(T>)>>)(Object, Object) |
Deletes an item in DynamoDB corresponding to a given hash-and-range primary key.
No version check is done prior to delete.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|
![]() | Delete<(Of <<'(T>)>>)(Object, Object, DynamoDBOperationConfig) |
Deletes an item in DynamoDB corresponding to a given hash-and-range primary key.
No version check is done prior to delete.
Type must be marked up with DynamoDBTableAttribute and at least
one public field/property with DynamoDBHashKeyAttribute.
|