DataSync examples using AWS CLI
The following code examples show you how to perform actions and implement common scenarios by using the AWS Command Line Interface with DataSync.
Actions are code excerpts from larger programs and must be run in context. While actions show you how to call individual service functions, you can see actions in context in their related scenarios.
Each example includes a link to the complete source code, where you can find instructions on how to set up and run the code in context.
Topics
Actions
The following code example shows how to use update-location-azure-blob.
- AWS CLI
-
To update your transfer location with a new agent
The following
update-location-object-storageexample updates your DataSync location for Microsoft Azure Blob Storage with a new agent.aws datasync update-location-azure-blob \ --location-arnarn:aws:datasync:us-west-2:123456789012:location/loc-abcdef01234567890\ --agent-arnsarn:aws:datasync:us-west-2:123456789012:agent/agent-1234567890abcdef0\ --sas-configuration '{ \ "Token": "sas-token-for-azure-blob-storage-access" \ }'This command produces no output.
For more information, see Replacing your agent in the AWS DataSync User Guide.
-
For API details, see UpdateLocationAzureBlob
in AWS CLI Command Reference.
-
The following code example shows how to use update-location-hdfs.
- AWS CLI
-
To update your transfer location with a new agent
The following
update-location-hdfsexample updates your DataSync HDFS location with a new agent. You only need the--kerberos-keytaband--kerberos-krb5-confoptions if your HDFS cluster uses Kerberos authentication.aws datasync update-location-hdfs \ --location-arnarn:aws:datasync:us-west-2:123456789012:location/loc-abcdef01234567890\ --agent-arnsarn:aws:datasync:us-west-2:123456789012:agent/agent-1234567890abcdef0\ --kerberos-keytabfile://hdfs.keytab--kerberos-krb5-conffile://krb5.confContents of
hdfs.keytab:N/A. The content of this file is encrypted and not human readable.Contents of
krb5.conf:[libdefaults] default_realm = EXAMPLE.COM dns_lookup_realm = false dns_lookup_kdc = false rdns = true ticket_lifetime = 24h forwardable = true udp_preference_limit = 1000000 default_tkt_enctypes = aes256-cts-hmac-sha1-96 aes128-cts-hmac-sha1-96 des3-cbc-sha1 default_tgs_enctypes = aes256-cts-hmac-sha1-96 aes128-cts-hmac-sha1-96 des3-cbc-sha1 permitted_enctypes = aes256-cts-hmac-sha1-96 aes128-cts-hmac-sha1-96 des3-cbc-sha1 [realms] EXAMPLE.COM = { kdc = kdc1.example.com admin_server = krbadmin.example.com default_domain = example.com } [domain_realm] .example.com = EXAMPLE.COM example.com = EXAMPLE.COM [logging] kdc = FILE:/var/log/krb5kdc.log admin_server = FILE:/var/log/kerberos/kadmin.log default = FILE:/var/log/krb5libs.logThis command produces no output.
For more information, see Replacing your agent in the AWS DataSync User Guide.
-
For API details, see UpdateLocationHdfs
in AWS CLI Command Reference.
-
The following code example shows how to use update-location-nfs.
- AWS CLI
-
To update your transfer location with a new agent
The following
update-location-nfsexample updates your DataSync NFS location with a new agent.aws datasync update-location-nfs \ --location-arnarn:aws:datasync:us-west-2:123456789012:location/loc-abcdef01234567890\ --on-prem-configAgentArns=arn:aws:datasync:us-west-2:123456789012:agent/agent-1234567890abcdef0This command produces no output.
For more information, see Replacing your agent in the AWS DataSync User Guide.
-
For API details, see UpdateLocationNfs
in AWS CLI Command Reference.
-
The following code example shows how to use update-location-object-storage.
- AWS CLI
-
To update your transfer location with a new agent
The following
update-location-object-storageexample updates your DataSync object storage location with a new agent.aws datasync update-location-object-storage \ --location-arnarn:aws:datasync:us-west-2:123456789012:location/loc-abcdef01234567890\ --agent-arnsarn:aws:datasync:us-west-2:123456789012:agent/agent-1234567890abcdef0\ --secret-keysecret-key-for-object-storageThis command produces no output.
For more information, see Replacing your agent in the AWS DataSync User Guide.
-
For API details, see UpdateLocationObjectStorage
in AWS CLI Command Reference.
-
The following code example shows how to use update-location-smb.
- AWS CLI
-
To update your transfer location with a new agent
The following
update-location-smbexample updates your DataSync SMB location with a new agent.aws datasync update-location-smb \ --location-arnarn:aws:datasync:us-west-2:123456789012:location/loc-abcdef01234567890\ --agent-arnsarn:aws:datasync:us-west-2:123456789012:agent/agent-1234567890abcdef0\ --passwordsmb-file-server-passwordThis command produces no output.
For more information, see Replacing your agent in the AWS DataSync User Guide.
-
For API details, see UpdateLocationSmb
in AWS CLI Command Reference.
-