翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
Snow Family デバイスの Amazon S3 互換ストレージのバケット内のオブジェクトの削除
Snow Family デバイスバケットの Amazon S3 互換ストレージから 1 つまたは複数のオブジェクトを削除できます。次の例では、 という名前のオブジェクトを削除します。sample-object.xml
を使用する AWS CLI。このコマンドを使用するには、各ユーザー入力プレースホルダーを独自の情報に置き換えます。
aws s3api delete-object --bucket
sample-bucket
--keykey
--profileyour-profile
--endpoint-urls3api-endpoint-ip
このコマンドの詳細については、「AWS CLI コマンドリファレンス」の「delete-object
Snow Family デバイス上の次の Amazon S3 互換ストレージの例では、 SDK for Java を使用してバケット内のオブジェクトを削除します。この例を使用するには、削除するオブジェクトのキー名を指定します。詳細については、「Amazon Simple Storage Service APIリファレンスDeleteObject」の「」を参照してください。
import com.amazonaws.AmazonServiceException; import com.amazonaws.SdkClientException; import com.amazonaws.services.s3.AmazonS3; import com.amazonaws.services.s3.AmazonS3ClientBuilder; import com.amazonaws.services.s3.model.DeleteObjectRequest; public class DeleteObject { public static void main(String[] args) { String bucketName = "*** Bucket name ***"; String keyName = "*** key name ****"; try { // This code expects that you have AWS credentials set up per: // https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/setup-credentials.html AmazonS3 s3Client = AmazonS3ClientBuilder.standard() .enableUseArnRegion() .build(); DeleteObjectRequest deleteObjectRequest = DeleteObjectRequest.builder() .bucket(bucketName) .key(keyName) .build())); s3Client.deleteObject(deleteObjectRequest); } catch (AmazonServiceException e) { // The call was transmitted successfully, but Amazon S3 couldn't process // it, so it returned an error response. e.printStackTrace(); } catch (SdkClientException e) { // Amazon S3 couldn't be contacted for a response, or the client // couldn't parse the response from Amazon S3. e.printStackTrace(); } } }