| 1187 | |
| 1188 | |
| 1189 | class RmCommand(S3TransferCommand): |
| 1190 | NAME = 'rm' |
| 1191 | DESCRIPTION = "Deletes an S3 object." |
| 1192 | USAGE = "<S3Uri>" |
| 1193 | ARG_TABLE = [ |
| 1194 | { |
| 1195 | 'name': 'paths', |
| 1196 | 'nargs': 1, |
| 1197 | 'positional_arg': True, |
| 1198 | 'synopsis': USAGE, |
| 1199 | }, |
| 1200 | DRYRUN, |
| 1201 | QUIET, |
| 1202 | RECURSIVE, |
| 1203 | REQUEST_PAYER, |
| 1204 | INCLUDE, |
| 1205 | EXCLUDE, |
| 1206 | ONLY_SHOW_ERRORS, |
| 1207 | PAGE_SIZE, |
| 1208 | ] |
| 1209 | |
| 1210 | |
| 1211 | class SyncCommand(S3TransferCommand): |