 c447e5cf15
			
		
	
	c447e5cf15
	
	
	
		
			
			See script directory for method. The script to run in the top level MaxScale directory is called maxscale-uncrustify.sh, which uses another script, list-src, from the same directory (so you need to set your PATH). The uncrustify version was 0.66.
		
			
				
	
	
		
			17 lines
		
	
	
		
			389 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			389 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 <unistd.h>
 | |
| #include "testconnections.h"
 | |
| #include <jansson.h>
 | |
| #include "rds_vpc.h"
 | |
| 
 | |
| int main(int argc, char* argv[])
 | |
| {
 | |
|     RDS* cluster = new RDS((char*) "auroratest");
 | |
|     cluster->delete_rds_cluster();
 | |
| }
 |