| 553 | } |
| 554 | |
| 555 | static Status Validate(const S3Path& path) { |
| 556 | auto st = internal::ValidateAbstractPath(path.full_path); |
| 557 | if (!st.ok()) { |
| 558 | return Status::Invalid(st.message(), " in path ", path.full_path); |
| 559 | } |
| 560 | return Status::OK(); |
| 561 | } |
| 562 | |
| 563 | Aws::String ToAwsString() const { |
| 564 | Aws::String res(bucket.begin(), bucket.end()); |
nothing calls this directly
no test coverage detected