| 493 | } |
| 494 | |
| 495 | static Status Validate(const S3Path& path) { |
| 496 | auto st = internal::ValidateAbstractPath(path.full_path); |
| 497 | if (!st.ok()) { |
| 498 | return Status::Invalid(st.message(), " in path ", path.full_path); |
| 499 | } |
| 500 | return Status::OK(); |
| 501 | } |
| 502 | |
| 503 | Aws::String ToAwsString() const { |
| 504 | Aws::String res(bucket.begin(), bucket.end()); |
nothing calls this directly
no test coverage detected