Repository: incubator-airflow Updated Branches: refs/heads/master 0ae21cf6e -> 686e805e6
[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 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/686e805e Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/686e805e Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/686e805e Branch: refs/heads/master Commit: 686e805e6749920a640250d9d200bd2a02157e3b Parents: 0ae21cf Author: Kengo Seki <[email protected]> Authored: Thu May 10 20:02:49 2018 +0200 Committer: Fokko Driesprong <[email protected]> Committed: Thu May 10 20:02:49 2018 +0200 ---------------------------------------------------------------------- docs/integration.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/686e805e/docs/integration.rst ---------------------------------------------------------------------- diff --git a/docs/integration.rst b/docs/integration.rst index 5e5a611..e8a06e1 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:
