|
219 | 219 | """ |
220 | 220 | The S3 bucket name the request refers to. Corresponds to the `--bucket` parameter of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) operations. |
221 | 221 | Note: The `bucket` attribute is applicable to all S3 operations that reference a bucket, i.e. that require the bucket name as a mandatory parameter. |
222 | | - This applies to almost all S3 operations except `list-buckets`. |
| 222 | +This applies to almost all S3 operations except `list-buckets`. |
223 | 223 | """ |
224 | 224 |
|
225 | 225 | AWS_S3_COPY_SOURCE: Final = "aws.s3.copy_source" |
226 | 226 | """ |
227 | 227 | The source object (in the form `bucket`/`key`) for the copy operation. |
228 | 228 | Note: The `copy_source` attribute applies to S3 copy operations and corresponds to the `--copy-source` parameter |
229 | | - of the [copy-object operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html). |
230 | | - This applies in particular to the following operations: |
| 229 | +of the [copy-object operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html). |
| 230 | +This applies in particular to the following operations: |
231 | 231 |
|
232 | | - - [copy-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html) |
233 | | - - [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html). |
| 232 | +- [copy-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html) |
| 233 | +- [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html). |
234 | 234 | """ |
235 | 235 |
|
236 | 236 | AWS_S3_DELETE: Final = "aws.s3.delete" |
237 | 237 | """ |
238 | 238 | The delete request container that specifies the objects to be deleted. |
239 | 239 | Note: The `delete` attribute is only applicable to the [delete-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-object.html) operation. |
240 | | - The `delete` attribute corresponds to the `--delete` parameter of the |
241 | | - [delete-objects operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-objects.html). |
| 240 | +The `delete` attribute corresponds to the `--delete` parameter of the |
| 241 | +[delete-objects operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-objects.html). |
242 | 242 | """ |
243 | 243 |
|
244 | 244 | AWS_S3_KEY: Final = "aws.s3.key" |
245 | 245 | """ |
246 | 246 | The S3 object key the request refers to. Corresponds to the `--key` parameter of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) operations. |
247 | 247 | Note: The `key` attribute is applicable to all object-related S3 operations, i.e. that require the object key as a mandatory parameter. |
248 | | - This applies in particular to the following operations: |
249 | | -
|
250 | | - - [copy-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html) |
251 | | - - [delete-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-object.html) |
252 | | - - [get-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/get-object.html) |
253 | | - - [head-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/head-object.html) |
254 | | - - [put-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/put-object.html) |
255 | | - - [restore-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/restore-object.html) |
256 | | - - [select-object-content](https://docs.aws.amazon.com/cli/latest/reference/s3api/select-object-content.html) |
257 | | - - [abort-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html) |
258 | | - - [complete-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/complete-multipart-upload.html) |
259 | | - - [create-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/create-multipart-upload.html) |
260 | | - - [list-parts](https://docs.aws.amazon.com/cli/latest/reference/s3api/list-parts.html) |
261 | | - - [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html) |
262 | | - - [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html). |
| 248 | +This applies in particular to the following operations: |
| 249 | +
|
| 250 | +- [copy-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html) |
| 251 | +- [delete-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-object.html) |
| 252 | +- [get-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/get-object.html) |
| 253 | +- [head-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/head-object.html) |
| 254 | +- [put-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/put-object.html) |
| 255 | +- [restore-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/restore-object.html) |
| 256 | +- [select-object-content](https://docs.aws.amazon.com/cli/latest/reference/s3api/select-object-content.html) |
| 257 | +- [abort-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html) |
| 258 | +- [complete-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/complete-multipart-upload.html) |
| 259 | +- [create-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/create-multipart-upload.html) |
| 260 | +- [list-parts](https://docs.aws.amazon.com/cli/latest/reference/s3api/list-parts.html) |
| 261 | +- [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html) |
| 262 | +- [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html). |
263 | 263 | """ |
264 | 264 |
|
265 | 265 | AWS_S3_PART_NUMBER: Final = "aws.s3.part_number" |
266 | 266 | """ |
267 | 267 | The part number of the part being uploaded in a multipart-upload operation. This is a positive integer between 1 and 10,000. |
268 | 268 | Note: The `part_number` attribute is only applicable to the [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html) |
269 | | - and [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html) operations. |
270 | | - The `part_number` attribute corresponds to the `--part-number` parameter of the |
271 | | - [upload-part operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html). |
| 269 | +and [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html) operations. |
| 270 | +The `part_number` attribute corresponds to the `--part-number` parameter of the |
| 271 | +[upload-part operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html). |
272 | 272 | """ |
273 | 273 |
|
274 | 274 | AWS_S3_UPLOAD_ID: Final = "aws.s3.upload_id" |
275 | 275 | """ |
276 | 276 | Upload ID that identifies the multipart upload. |
277 | 277 | Note: The `upload_id` attribute applies to S3 multipart-upload operations and corresponds to the `--upload-id` parameter |
278 | | - of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) multipart operations. |
279 | | - This applies in particular to the following operations: |
280 | | -
|
281 | | - - [abort-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html) |
282 | | - - [complete-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/complete-multipart-upload.html) |
283 | | - - [list-parts](https://docs.aws.amazon.com/cli/latest/reference/s3api/list-parts.html) |
284 | | - - [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html) |
285 | | - - [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html). |
| 278 | +of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) multipart operations. |
| 279 | +This applies in particular to the following operations: |
| 280 | +
|
| 281 | +- [abort-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html) |
| 282 | +- [complete-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/complete-multipart-upload.html) |
| 283 | +- [list-parts](https://docs.aws.amazon.com/cli/latest/reference/s3api/list-parts.html) |
| 284 | +- [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html) |
| 285 | +- [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html). |
286 | 286 | """ |
287 | 287 |
|
288 | 288 |
|
|
0 commit comments