Class AWSConfigsDynamoDB
- Namespace
- Amazon
- Assembly
- AWSSDK.DynamoDBv2.dll
Configurations for accessing DynamoDB
public static class AWSConfigsDynamoDB
- Inheritance
-
AWSConfigsDynamoDB
- Inherited Members
Fields
DynamoDBContextTableNamePrefixKey
Key for the DynamoDBContextTableNamePrefix property. DynamoDBContextTableNamePrefix
public const string DynamoDBContextTableNamePrefixKey = "AWS.DynamoDBContext.TableNamePrefix"
Field Value
Properties
Context
Settings for DynamoDBContext.
public static DynamoDBContextConfig Context { get; }
Property Value
DynamoDBContextTableNamePrefix
Configures the default TableNamePrefix that the DynamoDBContext will use if not manually configured. Changes to this setting will only take effect in newly-constructed instances of DynamoDBContextConfig and DynamoDBContext.
The setting can be configured through App.config, for example:
<appSettings>
<add key="AWS.DynamoDBContext.TableNamePrefix" value="Test-"/>
</appSettings>
[Obsolete("This property is obsolete. Use DynamoDBConfig.Context.TableNamePrefix instead.")]
public static string DynamoDBContextTableNamePrefix { get; set; }