I want to load data into an Amazon Redshift cluster using a boto3 Python script.
I want to create a script using boto3 python to do the following:
- Create a cluster
- Load data into the cluster
- Create a report on the performance on the cluster
I see in boto3 there are no methods available to load the data into the cluster. Maybe from a flat-file or from S3.
How can I load the data into the cluster using boto3 or any other python package?