Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.GetObjectACL

TElAWSS3DataStorageBucket     See also     


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


Retrieves ACL (Access Control List) of the data object.

Declaration

[C#]
    string GetObjectACL(string Key);

[VB.NET]
    Function GetObjectACL(ByVal Key As String) As String

[Pascal]
    function GetObjectACL(const Key : string) : string;

[C++]
    void GetObjectACL(const std::string &Key, std::string &OutResult);

[PHP]
    string GetObjectACL(string $Key)

[Java]
    String getObjectACL(String Key);

Parameters

  • Key - a unique identifier of the object within a bucket

Return value

    String that contains ACL for the object.

Description

    Use this method to get the ACL (Access Control List) for the object. Syntax of the ACL is described in the Amazon Simple Storage Service Developer guide.

See also:     SetObjectACL    

Discuss this help topic in SecureBlackbox Forum