The Amazon Redshift Getting Started Guide retrieves data from Amazon S3 and loads it into an Amazon Redshift cluster using SQLWorkbench / J. I would like to reproduce the same process of connecting to a cluster and upload sample data to the cluster using Boto3 .
However, in the Boto3 documentation in Redshift, I cannot find a method that would allow me to load data into an Amazon Redshift cluster.
I managed to connect to Redshift using Boto3 with the following code:
client = boto3.client('redshift')
But I'm not sure which method would allow me to create tables or load data into Amazon Redshift, as was done in the tutorial with SQLWorkbenchJ .
python amazon-s3 amazon-web-services amazon-redshift boto3
Chris
source share