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.

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

- T
- Type to populate.

- hashKey (Object)
- Hash key element of the target item.
- operationConfig (DynamoDBOperationConfig)
- Overriding configuration.

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