In Admin->Connection I set an Conn Type S3.
Basically I have this code in My Python script:
if __name__ == '__main__':
AWS_ACCESS_KEY_ID = "..."
AWS_SECRET_ACCESS_KEY = "..."
AWS_DEFAULT_REGION = "..."
Start_Work
What I want to do is call my script from Airflow and pass to it the arguments for the connection (instead of hard code them in the script).
How do I do that?
Let's assume that this is the connection:

How do I access each filed data?