Skip to main content

Delete bucket encryption

Deletes the bucket encryption configuration

Function DeleteBucketEncryption(Val Name, Val BasicData, Val Directory = False, Val Headers = Undefined) Export

ParameterCLI optionTypeRequiredDescription
Name--nameStringBucket name
BasicData--basicStructure of KeyAndValueBasic request data. See GetBasicDataStructure
Directory--dirBooleanTrue > Directory Bucket, False > General Purpose Bucket
Headers--headersMap Of KeyAndValueAdditional request headers, if necessary

Returns: Structure of KeyAndValue - serialized JSON response from storage


tip

Method at AWS documentation: DeleteBucketEncryption


1C:Enterprise/OneScript code example
    URL       = "storage-155.s3hoster.by";
AccessKey = "BRN5RKJE67...";
SecretKey = "NNhv+i9PrytpT8Tu0C1N...";
Region = "BTC";

BasicData = OPI_S3.GetBasicDataStructure(URL, AccessKey, SecretKey, Region);
Name = "opi-newbucket2";

Result = OPI_S3.DeleteBucketEncryption(Name, BasicData);
    # JSON data can also be passed as a path to a .json file

oint s3 DeleteBucketEncryption \
--name "opi-newbucket2" \
--basic "{'URL':'storage-155.s3hoster.by','AccessKey':'***','SecretKey':'***','Region':'BTC','Service':'s3'}" \
--dir false
Result
{
"status": 204,
"response": {},
"headers": {
"Accept-Ranges": "bytes",
"Content-Type": "text/plain; charset=utf-8",
"Date": "Fri, 22 Nov 2024 10:11:57 GMT",
"Server": "MinIO",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"Vary": "Origin,Accept-Encoding",
"X-Amz-Id-2": "057275ee0636b36a8256f409a6ff665de46bfaa1f0d5faf2d1b4f312e55c34fa",
"X-Amz-Request-Id": "180A42AD0BC01A3E",
"X-Content-Type-Options": "nosniff",
"X-Xss-Protection": "1; mode=block"
}
}