Class AmazonDynamoDBDefaultConfiguration
- Namespace
- Amazon.DynamoDBv2
- Assembly
- AWSSDK.DynamoDBv2.dll
Configuration for accessing Amazon DynamoDB service
public static class AmazonDynamoDBDefaultConfiguration
- Inheritance
-
AmazonDynamoDBDefaultConfiguration
- Inherited Members
Properties
Auto
The AUTO mode is an experimental mode that builds on the standard mode. The SDK will attempt to discover the execution environment to determine the appropriate settings automatically.
Note that the auto detection is heuristics-based and does not guarantee 100% accuracy. STANDARD mode will be used if the execution environment cannot be determined. The auto detection might query EC2 Instance Metadata service, which might introduce latency. Therefore we recommend choosing an explicit defaults_mode instead if startup latency is critical to your application
public static IDefaultConfiguration Auto { get; }
Property Value
- IDefaultConfiguration
CrossRegion
The CROSS_REGION mode builds on the standard mode and includes optimization tailored for applications which call AWS services in a different region
Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK
public static IDefaultConfiguration CrossRegion { get; }
Property Value
- IDefaultConfiguration
InRegion
The IN_REGION mode builds on the standard mode and includes optimization tailored for applications which call AWS services from within the same AWS region
Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK
public static IDefaultConfiguration InRegion { get; }
Property Value
- IDefaultConfiguration
Legacy
The LEGACY mode provides default settings that vary per SDK and were used prior to establishment of defaults_mode
public static IDefaultConfiguration Legacy { get; }
Property Value
- IDefaultConfiguration
Mobile
The MOBILE mode builds on the standard mode and includes optimization tailored for mobile applications
Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK
public static IDefaultConfiguration Mobile { get; }
Property Value
- IDefaultConfiguration
Standard
The STANDARD mode provides the latest recommended default values that should be safe to run in most scenarios
Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK
public static IDefaultConfiguration Standard { get; }
Property Value
- IDefaultConfiguration
Methods
GetAllConfigurations()
Collection of all Amazon.Runtime.DefaultConfigurations supported by DynamoDB
public static ReadOnlyCollection<IDefaultConfiguration> GetAllConfigurations()
Returns
- ReadOnlyCollection<IDefaultConfiguration>