(PureBasic) S3 Delete Bucket
Demonstrates how to delete a bucket.
IncludeFile "CkHttp.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
; Insert your access key here:
CkHttp::setCkAwsAccessKey(http, "ABQXXABC83ABCDEFVQXX")
; Insert your secret key here:
CkHttp::setCkAwsSecretKey(http, "XXXXYYYYabcdABCD12345678xxxxyyyyzzzz")
CkHttp::setCkKeepResponseBody(http, 1)
success.i = CkHttp::ckS3_DeleteBucket(http,"chilkattestbucket")
If success <> 1
Debug CkHttp::ckLastErrorText(http)
; Also examine the error response body from AWS:
Debug CkHttp::ckLastResponseBody(http)
Else
Debug "Bucket deleted."
EndIf
CkHttp::ckDispose(http)
ProcedureReturn
EndProcedure
|