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.

C# |
public T Load<T>( Object hashKey )

- T
- Type to populate.

- hashKey (Object)
- Hash key element of the target item.

Object of type T, populated with properties of item loaded from DynamoDB.