Sample code for 30+ languages & platforms
PowerBuilder

Wasabi Create Bucket

See more Wasabi Examples

Demonstrates how to create a new Wasabi bucket.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http

li_Success = 0

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Insert your access key here:
loo_Http.AwsAccessKey = "access-key"

// Insert your secret key here:
loo_Http.AwsSecretKey = "secret-key"

// To create a bucket located in a different region, use the domain for that region, such as "s3.eu-central-1.wasabisys.com"
loo_Http.AwsEndpoint = "s3.wasabisys.com"

// Change the bucket name here to something unique:
li_Success = loo_Http.S3_CreateBucket("chilkat-wasabi-testbucket")

if li_Success <> 1 then
    Write-Debug loo_Http.LastErrorText
else
    Write-Debug "Bucket created."
end if



destroy loo_Http