(self, parsed_args, parsed_globals)
| 106 | ] |
| 107 | |
| 108 | def _run_main(self, parsed_args, parsed_globals): |
| 109 | self._validate_args(parsed_args) |
| 110 | self.codedeploy = self._session.create_client( |
| 111 | 'codedeploy', |
| 112 | region_name=parsed_globals.region, |
| 113 | endpoint_url=parsed_globals.endpoint_url, |
| 114 | verify=parsed_globals.verify_ssl, |
| 115 | ) |
| 116 | self.s3 = self._session.create_client( |
| 117 | 's3', region_name=parsed_globals.region |
| 118 | ) |
| 119 | self._push(parsed_args) |
| 120 | return 0 |
| 121 | |
| 122 | def _validate_args(self, parsed_args): |
| 123 | validate_s3_location(parsed_args, 's3_location') |
nothing calls this directly
no test coverage detected