From 686e805e6749920a640250d9d200bd2a02157e3b Mon Sep 17 00:00:00 2001 From: Kengo Seki Date: Thu, 10 May 2018 20:02:49 +0200 Subject: [PATCH] [AIRFLOW-2446] Add S3ToRedshiftTransfer into the "Integration" doc This PR adds an undocumented AWS-related operator into the "Integration" section and fixes some obsolete description. Closes #3340 from sekikn/AIRFLOW-2446 --- docs/integration.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/integration.rst b/docs/integration.rst index 5e5a611cd4..e8a06e11ed 100644 --- a/docs/integration.rst +++ b/docs/integration.rst @@ -268,7 +268,8 @@ AWS RedShift - :ref:`AwsRedshiftClusterSensor` : Waits for a Redshift cluster to reach a specific status. - :ref:`RedshiftHook` : Interact with AWS Redshift, using the boto3 library. -- :ref:`RedshiftToS3Transfer` : Executes an unload command to S3 as a CSV with headers. +- :ref:`RedshiftToS3Transfer` : Executes an unload command to S3 as CSV with or without headers. +- :ref:`S3ToRedshiftTransfer` : Executes an copy command from S3 as CSV with or without headers. .. _AwsRedshiftClusterSensor: @@ -291,6 +292,13 @@ RedshiftToS3Transfer .. autoclass:: airflow.operators.redshift_to_s3_operator.RedshiftToS3Transfer +.. _S3ToRedshiftTransfer: + +S3ToRedshiftTransfer +"""""""""""""""""""" + +.. autoclass:: airflow.operators.s3_to_redshift_operator.S3ToRedshiftTransfer + .. _Databricks: