حذف ب رچسبهای یک آبجکت
مولفهها
- کلیدهای احراز هویت
- نام صندوقچه
- نام آبجکت
- NET.
- PHP
- Python
- Javascript
- GO
using Amazon;
using Amazon.S3;
using Amazon.S3.Model;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Reflection;
using Newtonsoft.Json;
namespace DeleteObjectTags
{
class DeleteObjectTags
{
private const string bucketName = "<BUCKET_NAME>";
private const string objectName = "<OBJECT_NAME>";
private static IAmazonS3 _s3Client;
public static void Main()
{
var awsCredentials = new Amazon.Runtime.BasicAWSCredentials("<ACCESS-KEY>", "<SECRET-KEY>");
var config = new AmazonS3Config { ServiceURL = "<ENDPOINT>" };
_s3Client = new AmazonS3Client(awsCredentials, config);
DeleteObjectTagsAsync().Wait();
}
private static async Task DeleteObjectTagsAsync()
{
try
{
DeleteObjectTaggingResponse response = await _s3Client.DeleteObjectTaggingAsync(new DeleteObjectTaggingRequest
{
BucketName = bucketName,
Key = objectName
});
Console.WriteLine(JsonConvert.SerializeObject(response, Formatting.Indented));
}
catch (AmazonS3Exception amazonS3Exception)
{
Console.WriteLine("An AmazonS3Exception was thrown. Exception: " + amazonS3Exception.ToString());
}
catch (Exception e)
{
Console.WriteLine("Exception: " + e.ToString());
}
}
}
}
<?php
require('client.php');
$bucket = '<BUCKET_NAME>';
$params = [
'Bucket' => $bucket, // REQUIRED
'ExpectedBucketOwner' => '<string>',
'Key' => '<OBJECT_NAME>', // REQUIRED
'VersionId' => '<string>',
];
try {
$resp = $client->deleteObjectTagging($params);
var_dump($resp);
} catch (AwsException $e) {
// Display error message
echo $e->getMessage();
echo "\n";
}
import boto3
import logging
from botocore.exceptions import ClientError
logging.basicConfig(level=logging.INFO)
try:
s3_client = boto3.client(
's3',
endpoint_url='<ENDPOINT>',
aws_access_key_id='<ACCESS-KEY>',
aws_secret_access_key='<SECRET-KEY>'
)
except Exception as exc:
logging.error(exc)
else:
try:
response = s3_client.delete_object_tagging(
Bucket='<BUCKET_NAME>',
Key='<OBJECT_NAME>',
VersionId='string',
ExpectedBucketOwner='string'
)
logging.info(response)
except ClientError as exc:
logging.error(exc)