utkarsharma2 commented on issue #31322:
URL: https://github.com/apache/airflow/issues/31322#issuecomment-1552917527

    Tested -  DynamoDBToS3Operator - Add a feature to export the table to a
   point in time. (#31142) <https://github.com/apache/airflow/pull/31142>
   With below dag:
   
   from datetime import datetime
   
   from airflow import DAG
   from airflow.providers.amazon.aws.transfers.dynamodb_to_s3 import
   DynamoDBToS3Operator
   
   with DAG(
       dag_id='example_export_dynamodb',
       schedule_interval=None,
       start_date=datetime(2021, 1, 1),
       tags=['example'],
       catchup=False,
   ) as dag:
       dynamodb_to_s3_operator = DynamoDBToS3Operator(
           task_id="dynamodb_to_s3",
           dynamodb_table_name="test",
           s3_bucket_name="tmp9",
           file_size=4000,
           export_time=datetime.now(),
           s3_key_prefix="test1"
       )
   
   Thanks,
   Utkarsh Sharma
   
   
   On Thu, May 18, 2023 at 11:13 AM Pankaj Koti ***@***.***>
   wrote:
   
   > Confirmed #31063 <https://github.com/apache/airflow/pull/31063>, #31042
   > <https://github.com/apache/airflow/pull/31042>, and #31062
   > <https://github.com/apache/airflow/pull/31062> (all of them are for
   > Provider amazon: 8.1.0rc1
   > <https://pypi.org/project/apache-airflow-providers-amazon/8.1.0rc1>) are
   > included in the RC and they ran fine on my example DAG. Thank you for the
   > efforts!
   >
   > —
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/airflow/issues/31322#issuecomment-1552441593>,
   > or unsubscribe
   > 
<https://github.com/notifications/unsubscribe-auth/ADDLAHKV4MSGUBN2S2WFJZ3XGWZHDANCNFSM6AAAAAAYD5TKEE>
   > .
   > You are receiving this because you were mentioned.Message ID:
   > ***@***.***>
   >
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to