Amazon.DynamoDBv2.DataModel.S3Link.MakeS3ObjectPublic C# (CSharp) Méthode

MakeS3ObjectPublic() public méthode

If enable is set to true the object will have its permission set to PublicRead otherwise the permissions will be set to Private.
public MakeS3ObjectPublic ( bool enable ) : void
enable bool If true the object will have its permission set to PublicRead otherwise the permissions will be set to Private.
Résultat void
        public void MakeS3ObjectPublic(bool enable)
        {
            this.s3ClientCache.GetClient(this.RegionAsEndpoint).MakeObjectPublic(this.linker.s3.bucket, this.linker.s3.key, enable);
        }