(self, parsed_args, parsed_globals)
| 990 | ] |
| 991 | |
| 992 | def _run_main(self, parsed_args, parsed_globals): |
| 993 | super(WebsiteCommand, self)._run_main(parsed_args, parsed_globals) |
| 994 | bucket = self._get_bucket_name(parsed_args.paths[0]) |
| 995 | website_configuration = self._build_website_configuration(parsed_args) |
| 996 | self.client.put_bucket_website( |
| 997 | Bucket=bucket, WebsiteConfiguration=website_configuration |
| 998 | ) |
| 999 | return 0 |
| 1000 | |
| 1001 | def _build_website_configuration(self, parsed_args): |
| 1002 | website_config = {} |
nothing calls this directly
no test coverage detected