@@ -10,6 +10,7 @@ commands:
1010 --include= : Don’t exclude files or objects in the command that match the specified pattern
1111 --exclude= : Exclude all files or objects from the command that matches the specified pattern
1212 --acl= : Sets the ACL for the object when the command is performed
13+ --case-conflict= : Configures behavior when attempting to download multiple objects whose keys differ only by case
1314 --follow-symlinks : Symbolic links are followed only when uploading to S3 from the local filesystem
1415 --no-follow-symlinks : Symbolic links are followed only when uploading to S3 from the local filesystem
1516 --no-guess-mime-type : Do not try to guess the mime type for uploaded files
@@ -46,6 +47,11 @@ commands:
4647 --recursive : Command is performed on all files or objects under the specified directory or prefix
4748 completion :
4849 flag :
50+ case-conflict :
51+ - " error\t Raise an error and abort downloads"
52+ - " warn\t The default value. Emit a warning and download the object"
53+ - " skip\t Skip downloading the object"
54+ - " ignore\t Ignore the conflict and download the object"
4955 storage-class :
5056 - STANDARD
5157 - REDUCED_REDUNDANCY
@@ -76,6 +82,7 @@ commands:
7682 - name : mv
7783 description : Moves a local file or S3 object to another location locally or in S3.
7884 flags :
85+ --case-conflict= : Configures behavior when attempting to download multiple objects whose keys differ only by case
7986 --dryrun : Displays the operations that would be performed using the specified command without actually running them
8087 --quiet : Does not display the operations performed from the specified command
8188 --include= : Don’t exclude files or objects in the command that match the specified pattern
@@ -117,6 +124,11 @@ commands:
117124 --validate-same-s3-paths : Resolves the source and destination S3 URIs to their underlying buckets
118125 completion :
119126 flag :
127+ case-conflict :
128+ - " error\t Raise an error and abort downloads"
129+ - " warn\t The default value. Emit a warning and download the object"
130+ - " skip\t Skip downloading the object"
131+ - " ignore\t Ignore the conflict and download the object"
120132 storage-class :
121133 - STANDARD
122134 - REDUCED_REDUNDANCY
@@ -161,6 +173,7 @@ commands:
161173 --include= : Don’t exclude files or objects in the command that match the specified pattern
162174 --exclude= : Exclude all files or objects from the command that matches the specified pattern
163175 --acl= : Sets the ACL for the object when the command is performed
176+ --case-conflict= : Configures behavior when attempting to download multiple objects whose keys differ only by case
164177 --follow-symlinks : Symbolic links are followed only when uploading to S3 from the local filesystem
165178 --no-follow-symlinks : Symbolic links are followed only when uploading to S3 from the local filesystem
166179 --no-guess-mime-type : Do not try to guess the mime type for uploaded files
@@ -195,6 +208,11 @@ commands:
195208 --metadata-directive= : Sets the x-amz-metadata-directive header for CopyObject operations
196209 completion :
197210 flag :
211+ case-conflict :
212+ - " error\t Raise an error and abort downloads"
213+ - " warn\t The default value. Emit a warning and download the object"
214+ - " skip\t Skip downloading the object"
215+ - " ignore\t Ignore the conflict and download the object"
198216 storage-class :
199217 - STANDARD
200218 - REDUCED_REDUNDANCY
0 commit comments