Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorage.GetBucketLocation

TElAWSS3DataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Returns physical location where the bucket is stored.

Declaration

[C#]
    string GetBucketLocation(string BucketName);
    string GetBucketLocation(TElAWSS3DataStorageBucket Bucket);
    string GetBucketLocation(string BucketName, TElStringList Headers);

[VB.NET]
    Function GetBucketLocation(ByVal BucketName As String) As String
    Function GetBucketLocation(ByVal Bucket As TElAWSS3DataStorageBucket) As String
    Function GetBucketLocation(ByVal BucketName As String, ByVal Headers As TElStringList) As String

[Pascal]
    function GetBucketLocation(const BucketName : string) : string;
    function GetBucketLocation(Bucket : TElAWSS3DataStorageBucket) : string;
    function GetBucketLocation(const BucketName : string; Headers : TStringList) : string;

[C++]
    void GetBucketLocation(const std::string &BucketName, std::string &OutResult);
    void GetBucketLocation(TElAWSS3DataStorageBucket &Bucket, std::string &OutResult);
    void GetBucketLocation(TElAWSS3DataStorageBucket *Bucket, std::string &OutResult);
    void GetBucketLocation(const std::string &BucketName, TElStringList &Headers, std::string &OutResult);
    void GetBucketLocation(const std::string &BucketName, TElStringList *Headers, std::string &OutResult);

[PHP]
    string GetBucketLocation(string $BucketName)
    string GetBucketLocation(TElAWSS3DataStorageBucket $Bucket)
    string GetBucketLocation(string $BucketName, TElStringList $Headers)

[Java]
    String getBucketLocation(TElAWSS3DataStorageBucket Bucket);
    String getBucketLocation(String BucketName, TElStringList Headers);
    String getBucketLocation(String BucketName);

Parameters

  • BucketName - name of the data bucket
  • Bucket - data bucket which location is required
  • Headers - contains HTTP headers

Return value

    Name of the location where the data is physically stored.

Description

    Use this method to get the location where the data bucket is physically stored.

See also:     BucketExists    

Discuss this help topic in SecureBlackbox Forum