| 36 | '</LegalHold>'; |
| 37 | |
| 38 | const putLegalHoldReq = status => ({ |
| 39 | bucketName, |
| 40 | objectKey: objectName, |
| 41 | headers: { host: `${bucketName}.s3.amazonaws.com` }, |
| 42 | post: objectLegalHoldXml(status), |
| 43 | actionImplicitDenies: false, |
| 44 | }); |
| 45 | |
| 46 | describe('putObjectLegalHold API', () => { |
| 47 | before(cleanup); |
no test coverage detected