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

UploadStream() public method

Uploads the stream and stores it in the specified bucket with the provided key from construction.
public UploadStream ( Stream stream ) : void
stream Stream Stream to upload.
return void
        public void UploadStream(Stream stream)
        {
            this.s3ClientCache.GetClient(this.RegionAsEndpoint).UploadObjectFromStream(this.linker.s3.bucket, this.linker.s3.key, stream, null);
        }