14 lines
		
	
	
		
			328 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			328 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /**
 | |
|  * @file delete_rds.cpp Destroys RDS Aurora cluster
 | |
|  * Creates VPC, subnets, subnets group, internet gateway, routing table, routes, DB instances
 | |
|  */
 | |
| 
 | |
| #include <iostream>
 | |
| #include <maxtest/rds_vpc.hh>
 | |
| 
 | |
| int main(int argc, char* argv[])
 | |
| {
 | |
|     RDS* cluster = new RDS((char*) "auroratest");
 | |
|     cluster->delete_rds_cluster();
 | |
| }
 | 
