I have Create an Application in MVC which is currently using AWS Data Server.For it I am using Amazon Simple DB API . My Database Created by the client is allocated at US-EAST-1 but by the code it's accessing the Database US-WEST-2. If I am Creating the Database or Table Pro grammatically by the code like-
simpleDBClient.CreateDomain(new CreateDomainRequest() { DomainName = "DemoTable"});
it also stores in US-WEST-2 Region.Please let me know how come i retrive the AWS US-EAST-1 Tables. and in the starting I have also choosed the US-EAST-1 at the time of Creation of Project in Visual Studio. Any Help will be Appreciated.