Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageObject.GetACL

TElAWSS3DataStorageObject     See also     


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


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

Declaration

[C#]
    string GetACL();
    void GetACL(TElAWSS3AccessControlPolicy Policy);

[VB.NET]
    Function GetACL() As String
    Sub GetACL(ByVal Policy As TElAWSS3AccessControlPolicy)

[Pascal]
    function GetACL : string;
    procedure GetACL(Policy : TElAWSS3AccessControlPolicy);

[C++]
    void GetACL(std::string &OutResult);
    void GetACL(TElAWSS3AccessControlPolicy &Policy);
    void GetACL(TElAWSS3AccessControlPolicy *Policy);

[PHP]
    string GetACL()
    void GetACL(TElAWSS3AccessControlPolicy $Policy)

[Java]
    void getACL(TElAWSS3AccessControlPolicy Policy);
    String getACL();

Parameters

  • Policy - specifies the access control policy for the object.

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:     SetACL    

Discuss this help topic in SecureBlackbox Forum