Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.SetObjectACL

TElAWSS3DataStorageBucket     See also     


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


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

Declaration

[C#]
    void SetObjectACL(string Key, string ACL);

[VB.NET]
    Sub SetObjectACL(ByVal Key As String, ByVal ACL As String)

[Pascal]
    procedure SetObjectACL(const Key : string; const ACL : string);

[C++]
    void SetObjectACL(const std::string &Key, const std::string &ACL);

[PHP]
    void SetObjectACL(string $Key, string $ACL)

[Java]
    void setObjectACL(String Key, String ACL);

Parameters

  • Key - a unique identifier of the object within a bucket
  • ACL - specifies new ACL of the object

Description

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

See also:     GetObjectACL    

Discuss this help topic in SecureBlackbox Forum