(Delphi ActiveX) Wasabi Create Bucket
Demonstrates how to create a new Wasabi bucket.
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;
...
procedure TForm1.Button1Click(Sender: TObject);
var
http: TChilkatHttp;
success: Integer;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
// Insert your access key here:
http.AwsAccessKey := 'access-key';
// Insert your secret key here:
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"
http.AwsEndpoint := 's3.wasabisys.com';
// Change the bucket name here to something unique:
success := http.S3_CreateBucket('chilkat-wasabi-testbucket');
if (success <> 1) then
begin
Memo1.Lines.Add(http.LastErrorText);
end
else
begin
Memo1.Lines.Add('Bucket created.');
end;
end;
|