private void CreateRdsDatabase(AwsClientDetails clientDetails)
 {
     using (var helper = new RDSHelper(clientDetails))
     {
         throw new NotImplementedException("");
     }
 }
 private void CreateRdsDatabase(AwsClientDetails clientDetails)
 {
     using (var helper = new RDSHelper(clientDetails))
     {
         throw new NotImplementedException("");
     }
 }
예제 #3
0
 public void TestReboot()
 {
     var helper = new RDSHelper(AwsAccessKey, AwsSecretAccessKey);
     helper.RebootDatabase(TestDatabaseName);
 }
예제 #4
0
 public void TestDescribe()
 {
     var helper = new RDSHelper(AwsAccessKey, AwsSecretAccessKey);
     helper.Describe(TestDatabaseName);
 }