예제 #1
0
 public IRedshiftCopyCommandBuilder AccessKey(string accessKeyId, string accessKeySecret)
 {
     _authorizedBy    = CopyFromAuthorizedBy.AccessKey;
     _accessKeyId     = accessKeyId;
     _accessKeySecret = accessKeySecret;
     return(this);
 }
예제 #2
0
 public RedshiftCopyCommandBuilder()
 {
     _authorizedBy   = CopyFromAuthorizedBy.Undefined;
     _copyFromSource = CopyFromSourceType.Undefined;
 }
예제 #3
0
 public IRedshiftCopyCommandBuilder IamRole(string iamRoleArn)
 {
     _authorizedBy = CopyFromAuthorizedBy.IamRole;
     _iamRole      = iamRoleArn;
     return(this);
 }