Samples for cloud-related source and destination files

Code for specifying the source and destination for AWS and Azure.
"source": {
      "type": "File",
      "file": {
        "name": "s3://<path_to_dataset>",
        "accessOptions": {
            "key": "API Key",
            "secret": "Secret Key"
        }
      }
    }
  
"source": {
      "type": "File",
      "file": {
        "name": "adl://<path-to-dataset>",
        "accessOptions":{
            "tenant_id": Tenant_ID,
            "client_id": Client_ID,
            "client_secret": Client_Secret_Key
        }
      }
    }
  
"source": {
    "type": "File",
    "file": {
      "name": "abfs://<path_to_source_file>",
      "accessOptions":{
        "account_name": "<account_name>",
        "account_key": "<Account_key>” 
      }
    },
    "format": "CSV"
  }

Last modified : June 27, 2025