Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.GetACL

TElAWSS3DataStorageBucket     See also     


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


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

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 access control policy for the bucket.

Return value

    String that contains ACL for the bucket, or TElAWSS3AccessControlPolicy object that contains the access policy.

Description

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

See also:     SetACL    

Discuss this help topic in SecureBlackbox Forum