Amazon.DynamoDBv2.DataModel.S3Link.OpenStream C# (CSharp) Method

OpenStream() public method

Open stream to the data stored in Amazon S3.
public OpenStream ( ) : Stream
return Stream
        public Stream OpenStream()
        {
            return this.s3ClientCache.GetClient(this.RegionAsEndpoint).GetObjectStream(this.linker.s3.bucket, this.linker.s3.key, null);
        }