(self, alias, key)
| 828 | return [f"s3://{bucket}/{key}"] |
| 829 | |
| 830 | def _resolve_accesspoint_alias(self, alias, key): |
| 831 | account = self._get_account_id() |
| 832 | bucket = self._get_access_point_bucket(account, alias) |
| 833 | return [f"s3://{bucket}/{key}"] |
| 834 | |
| 835 | def _resolve_mrap_alias(self, account, alias, key): |
| 836 | buckets = self._get_mrap_buckets(account, alias) |
no test coverage detected