1
s3cmd
(s3cmd
ではない)を使用してAmazon S3を管理すると、拡張子が.pdf
のすべてのオブジェクトを選択してコンテンツタイプapplication/pdf
を適用するにはどうすればよいですか?Amazon S3オブジェクトにコンテンツタイプを適用する方法
これは私がこれまでに思い付いたものです:
私はこのエラーを知った--debug
パラメータ使用
aws s3 sync s3://${BUCKET_NAME} s3://${BUCKET_NAME}
--dryrun
--exclude '*'
--include '*.pdf'
--no-guess-mime-type
--content-type application/pdf
:
An error occurred (InvalidRequest) when calling the CopyObject operation:
This copy request is illegal because it is trying to copy an object to itself
without changing the object's metadata, storage class,
website redirect location or encryption attributes.
をオプションなしであなたのコマンドを試すことができますか?次に、オプションが1つずつ追加され、失敗したときを確認します。 – Sylwit
@Sylwit私は--debugパラメータを使用し、エラーを見つけて質問を更新しました。 – bart