Delete an RDS instance and (optionally) a security group
(self, args)
| 308 | output(data) |
| 309 | |
| 310 | def cmd_delete_instance(self, args): |
| 311 | """ Delete an RDS instance and (optionally) a security group """ |
| 312 | self._delete_rds_instance(args, args.name) |
| 313 | |
| 314 | if args.security_group is not None: |
| 315 | self._delete_security_group(args, args.security_group) |
| 316 | |
| 317 | |
| 318 | def load(): |
nothing calls this directly
no test coverage detected