public S3OutputMethod(S3OutputMethod template) { s3adaptor = template.s3adaptor; bucketName = template.bucketName; basePath = template.basePath; bucketCreated = template.bucketCreated; }
public S3OutputMethod(S3OutputMethod template) { this.s3adaptor = template.s3adaptor; this.bucketName = template.bucketName; this.basePath = template.basePath; this.bucketCreated = template.bucketCreated; }
public S3OutputMethod(S3Adaptor s3adaptor, string bucketName, string basePath) { this.s3adaptor = s3adaptor; this.bucketName = bucketName; this.basePath = basePath; bucketCreated = new HeapBool(false); }
public S3OutputMethod(S3Adaptor s3adaptor, string bucketName, string basePath) { this.s3adaptor = s3adaptor; this.bucketName = bucketName; this.basePath = basePath; this.bucketCreated = new HeapBool(false); }