(self, account, alias, key)
| 833 | return [f"s3://{bucket}/{key}"] |
| 834 | |
| 835 | def _resolve_mrap_alias(self, account, alias, key): |
| 836 | buckets = self._get_mrap_buckets(account, alias) |
| 837 | return [f"s3://{bucket}/{key}" for bucket in buckets] |
| 838 | |
| 839 | def _get_access_point_bucket(self, account, name): |
| 840 | return self._s3control_client.get_access_point( |
no test coverage detected