User guide

Table Of Contents
To set service logging with the SDK for .NET API, set the AWSConfigs.ResponseLogging property
to one of the values of the ResponseLoggingOption enumeration:
AWSConfigs.ResponseLogging = ResponseLoggingOption.OnError;
Changes to this setting take effect immediately.
AWS.DynamoDBContext.TableNamePrefix
Configures the default TableNamePrefix that the DynamoDBContext will use if not manually
configured.
To set the table name prefix in the .config file, set the AWS.DynamoDBContext.TableNamePrefix
key in the <appSettings> section:
<add key="AWS.DynamoDBContext.TableNamePrefix" value="Test-"/>
To set the table name prefix with the SDK for .NET API, set the AWSConfigs.DynamoDBContext-
TableNamePrefix property to the value you want to set:
AWSConfigs.DynamoDBContextTableNamePrefix = "Test-";
Changes to this setting will take effect only in newly-constructed instances of DynamoDBContextCon-
fig and DynamoDBContext.
AWS.EC2.UseSignatureVersion4
Configures whether or not the Amazon EC2 client should use Signature Version 4 signing with re-
quests.
To set Signature Version 4 signing for Amazon EC2 in the .config file, set the AWS.EC2.UseSig-
natureVersion4 key to true in the <appSettings> section:
<add key="AWS.EC2.UseSignatureVersion4" value="true"/>
To set Signature Version 4 signing with the SDK for .NET API, set the AWSConfigs.EC2UseSigna-
tureVersion4 property to true:
AWSConfigs.EC2UseSignatureVersion4 = true;
By default, this setting is false, though Signature Version 4 may be used by default in some cases
or with some regions. When the setting is true, Signature Version 4 will be used for all requests.
Changes to this setting take effect only for new Amazon EC2 client instances.
AWS.S3.UseSignatureVersion4
Configures whether or not the Amazon S3 client should use Signature Version 4 signing with requests.
To set Signature Version 4 signing for Amazon S3 in the .config file, set the AWS.S3.UseSigna-
tureVersion4 key to true in the <appSettings> section:
<add key="AWS.S3.UseSignatureVersion4" value="true"/>
To set Signature Version 4 signing with the SDK for .NET API, set the AWSConfigs.S3UseSignature-
Version4 property to true:
AWSConfigs.S3UseSignatureVersion4 = true;
Version v2.0.0
15
AWS SDK for .NET Developer Guide
Additional Application Parameters