in redshift_benchmark/lib/cdkInitialAssets.py [0:0]
def __init__(self, scope: core.Construct, id: str, local_directory:str,**kwargs) -> None:
super().__init__(scope, id, **kwargs)
self.s3bucket = s3.Bucket(self, 'S3Asset')
s3deploy.BucketDeployment(self, 's3deploy', sources =[s3deploy.Source.asset(os.getcwd()+ "/"+local_directory)]
,destination_bucket=self.s3bucket)