AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Configuration options that apply to the entire SDK. These settings can be configured through app.config or web.config. Below is a full sample configuration that illustrates all the possible options.
<configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws region="us-west-2"> <logging logTo="Log4Net, SystemDiagnostics" logResponses="Always" logMetrics="true" /> <s3 useSignatureVersion4="true" /> <proxy host="localhost" port="8888" username="1" password="1" /> <dynamoDB> <dynamoDBContext tableNamePrefix="Prod-" metadataCachingMode="Default" disableFetchingTableMetadata="false" retrieveDateTimeInUtc="false"> <tableAliases> <alias fromTable="FakeTable" toTable="People" /> <alias fromTable="Persons" toTable="People" /> </tableAliases> <mappings> <map type="Sample.Tests.Author, SampleDLL" targetTable="People" /> <map type="Sample.Tests.Editor, SampleDLL" targetTable="People"> <property name="FullName" attribute="Name" /> <property name="EmployeeId" attribute="Id" /> <property name="ComplexData" converter="Sample.Tests.ComplexDataConverter, SampleDLL" /> <property name="Version" version="true" /> <property name="Password" ignore="true" /> </map> </mappings> </dynamoDBContext> </dynamoDB> </aws>
Namespace: Amazon
Assembly: AWSSDK.Core.dll
Version: 3.x.y.z
public static class AWSConfigs
The AWSConfigs type exposes the following members
Name | Type | Description | |
---|---|---|---|
ApplicationName | System.String |
The unique application name for the current application. This values is currently used by high level APIs (Mobile Analytics Manager and Cognito Sync Manager) to create a unique file path to store local database files. Changes to this setting will only take effect in newly-constructed objects using this property. <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws applicationName="" /> |
|
AWSProfileName | System.String |
Profile name for stored AWS credentials that will be used to make service calls. Changes to this setting will only take effect in newly-constructed clients. To reference the account from an application's App.config or Web.config use the AWSProfileName setting. <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="AWSProfileName" value="development"/> </appSettings> </configuration> |
|
AWSProfilesLocation | System.String |
Location of the credentials file shared with other AWS SDKs. By default, the credentials file is stored in the .aws directory in the current user's home directory. Changes to this setting will only take effect in newly-constructed clients. To reference the profile from an application's App.config or Web.config use the AWSProfileName setting. <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="AWSProfilesLocation" value="c:\config"/> </appSettings> </configuration> |
|
AWSRegion | System.String |
Configures the default AWS region for clients which have not explicitly specified a region. Changes to this setting will only take effect for newly constructed instances of AWS clients. This setting can be configured through the App.config. For example: <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws region="us-west-2" /> |
|
ClockOffset | System.TimeSpan |
The calculated clock skew correction, if there is one.
This field will be set if a service call resulted in an exception
and the SDK has determined that there is a difference between local
and server times.
If |
|
CorrectForClockSkew | System.Boolean |
Determines if the SDK should correct for client clock skew
by determining the correct server time and reissuing the
request with the correct time.
Default value of this field is True.
|
|
CSMConfig | Amazon.Util.CSMConfig | ||
EndpointDefinition | System.String |
Configures if the SDK should use a custom configuration file that defines the regions and endpoints. <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws endpointDefinition="c:\config\endpoints.json" /> |
|
InitializeCollections | System.Boolean |
When true the collections used on the service API request and response objects are initialized to an empty collection. The collections are sent as part of requests when a collection is non-empty. Setting InitializeCollections to false means all collections used on the service API request and response objects are initialized to null. The collections are sent as part of requests when the collection non-null including an empty collection. The default value is true. In the next major version of the SDK the default will change to false. This will improve performance not creating unnecessary collection instances and provide more control when the collection is sent to the service. Setting this property is not thread safe and should only be set at application startup. |
|
Logging | Amazon.LoggingOptions |
Configures how the SDK should log events, if at all. Changes to this setting will only take effect in newly-constructed clients. The setting can be configured through App.config, for example: <appSettings> <add key="AWSLogging" value="log4net"/> </appSettings> |
|
LoggingConfig | Amazon.Util.LoggingConfig |
Configuration for the Logging section of AWS configuration. Changes to some settings may not take effect until a new client is constructed. Example section: <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws> <logging logTo="Log4Net, SystemDiagnostics" logResponses="Always" logMetrics="true" /> </aws> |
|
LogMetrics | System.Boolean |
Configures if the SDK should log performance metrics. This setting configures the default LogMetrics property for all clients/configs. Changes to this setting will only take effect in newly-constructed clients. The setting can be configured through App.config, for example: <appSettings> <add key="AWSLogMetrics" value="true"/> </appSettings> |
|
ManualClockCorrection | System.Nullable<System.TimeSpan> |
Manual offset to apply to client clock. This is a global setting that overrides ClockOffset value calculated for all service endpoints. |
|
ProxyConfig | Amazon.Util.ProxyConfig |
Configuration for the Proxy section of AWS configuration. Changes to some settings may not take effect until a new client is constructed. Example section: <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws> <proxy host="localhost" port="8888" username="1" password="1" bypassList="addressexpr1;addressexpr2;..." bypassOnLocal="true" /> </aws> |
|
RegionEndpoint | Amazon.RegionEndpoint |
Configuration for the region endpoint section of AWS configuration. Changes may not take effect until a new client is constructed. Example section: <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws region="us-west-2" /> |
|
ResponseLogging | Amazon.ResponseLoggingOption |
Configures when the SDK should log service responses. Changes to this setting will take effect immediately. The setting can be configured through App.config, for example: <appSettings> <add key="AWSResponseLogging" value="OnError"/> </appSettings> |
|
TelemetryProvider | Amazon.Runtime.Telemetry.TelemetryProvider |
Gets or sets the global Amazon.AWSConfigs.TelemetryProvider instance. This global telemetry provider is used to collect and report telemetry data (such as traces and metrics) for all AWS SDK operations. |
|
UseAlternateUserAgentHeader | System.Boolean |
When set to true, the service client will use the x-amz-user-agent header instead of the User-Agent header to report version and environment information to the AWS service. Note: This is especially useful when using a platform like WebAssembly which doesn't allow to specify the User-Agent header. |
|
UseSdkCache | System.Boolean |
Configures if the SDK Cache should be used, the default value is true. <configSections> <section name="aws" type="Amazon.AWSSection, AWSSDK.Core"/> </configSections> <aws useSdkCache="true" /> |
Name | Description | |
---|---|---|
AddTraceListener(string, TraceListener) |
Add a listener for SDK logging. |
|
GenerateConfigTemplate() |
Generates a sample XML representation of the SDK configuration section. |
|
GetConfig(string) | ||
RemoveTraceListener(string, string) |
Remove a trace listener from SDK logging. |
Name | Type | Description | |
---|---|---|---|
AWSProfileNameKey | System.String |
Key for the AWSProfileName property.
|
|
AWSProfilesLocationKey | System.String |
Key for the AWSProfilesLocation property.
|
|
AWSRegionKey | System.String |
Key for the AWSRegion property.
|
|
EndpointDefinitionKey | System.String |
Key for the EndpointDefinition property.
|
|
InitializeCollectionsKey | System.String |
Key for the InitializeCollections property.
|
|
LoggingKey | System.String |
Key for the Logging property.
|
|
LogMetricsKey | System.String |
Key for the LogMetrics property.
|
|
ResponseLoggingKey | System.String |
Key for the ResponseLogging property.
|
|
UseSdkCacheKey | System.String |
Key for the UseSdkCache property.
|
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5