Fokko closed pull request #4048: [AIRFLOW-3202] add missing documentation for AWS hooks/operator URL: https://github.com/apache/incubator-airflow/pull/4048
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/docs/code.rst b/docs/code.rst index 764d6949ac..211e1abafe 100644 --- a/docs/code.rst +++ b/docs/code.rst @@ -378,6 +378,7 @@ Community contributed hooks .. autoclass:: airflow.contrib.hooks.aws_dynamodb_hook.AwsDynamoDBHook .. autoclass:: airflow.contrib.hooks.aws_hook.AwsHook .. autoclass:: airflow.contrib.hooks.aws_lambda_hook.AwsLambdaHook +.. autoclass:: airflow.contrib.hooks.aws_firehose_hook.AwsFirehoseHook .. autoclass:: airflow.contrib.hooks.azure_data_lake_hook.AzureDataLakeHook .. autoclass:: airflow.contrib.hooks.azure_fileshare_hook.AzureFileShareHook .. autoclass:: airflow.contrib.hooks.bigquery_hook.BigQueryHook diff --git a/docs/integration.rst b/docs/integration.rst index 3a5a3c3e05..a7e21be20c 100644 --- a/docs/integration.rst +++ b/docs/integration.rst @@ -313,6 +313,49 @@ S3ToRedshiftTransfer .. autoclass:: airflow.operators.s3_to_redshift_operator.S3ToRedshiftTransfer +AWS DynamoDB +'''''''''''' + +- :ref:`HiveToDynamoDBTransferOperator` : Moves data from Hive to DynamoDB. +- :ref:`AwsDynamoDBHook` : Interact with AWS DynamoDB. + +.. _HiveToDynamoDBTransferOperator: + +HiveToDynamoDBTransferOperator +"""""""""""""""""""""""""""""" + +.. autoclass:: airflow.contrib.operators.hive_to_dynamodb.HiveToDynamoDBTransferOperator + +.. _AwsDynamoDBHook: + +AwsDynamoDBHook +""""""""""""""" + +.. autoclass:: airflow.contrib.hooks.aws_dynamodb_hook.AwsDynamoDBHook + +AWS Lambda +'''''''''' + +- :ref:`AwsLambdaHook` : Interact with AWS Lambda. + +.. _AwsLambdaHook: + +AwsLambdaHook +""""""""""""" + +.. autoclass:: airflow.contrib.hooks.aws_lambda_hook.AwsLambdaHook + +AWS Kinesis +''''''''''' + +- :ref:`AwsFirehoseHook` : Interact with AWS Kinesis Firehose. + +.. _AwsFirehoseHook: + +AwsFirehoseHook +""""""""""""""" + +.. autoclass:: airflow.contrib.hooks.aws_firehose_hook.AwsFirehoseHook .. _Databricks: ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
