예제 #1
0
 public IRedshiftCopyCommandBuilder S3(string bucketName, Action <IRedshiftCopyFromS3Builder> s3)
 {
     _copyFromSource    = CopyFromSourceType.S3;
     _copyFromS3Builder = new RedshiftCopyFromS3Builder(bucketName);
     s3(_copyFromS3Builder);
     return(this);
 }
예제 #2
0
 public RedshiftCopyCommandBuilder()
 {
     _authorizedBy   = CopyFromAuthorizedBy.Undefined;
     _copyFromSource = CopyFromSourceType.Undefined;
 }