
Ultimate access to all questions.
You are tasked with setting up a data ingestion pipeline from an Amazon Kinesis stream to an Amazon Redshift cluster. The data is highly sensitive and requires specific configurations to ensure data integrity and security. Describe the steps you would take to implement this pipeline, including the use of AWS Lambda for data transformation and Amazon S3 for intermediate storage.
A
Directly load data from Kinesis to Redshift without using Lambda or S3.
B
Use Lambda to transform data and store it in S3, then use Redshift's COPY command to load data from S3.
C
Use Kinesis Firehose to directly deliver data to Redshift without transformation.
D
Transform data using AWS Glue and then load it into Redshift.