Elastic search Restore in different cluster

I took the Elastic search backup in aws instance by using the below commands.

#repository creation
curl -XPUT 'http://localhost:9200/_snapshot/RL_Backup' -d '{
"type": "fs",
"settings": {
"compress" : true,
"location": "/home/ajay.k/ESbackup"
}
}''

#snapshot creation
curl -XPUT 'http://localhost:9200/_snapshot/RL_Backup/snapshot_1?wait_for_completion=false'

Now I would like to restore this backup in IBM instance from s3 bucket.. while restoring in IBM , it says snapshot missing. I created the snapshot like old one but indices are not coming. Could you help me?

S3 bucket? But this snapshot is in a file based repository.

Yes am doing as file based repository.This is an 3 node cluster, Just am dong as Backup and Restore to New Cluster . But Cluster name is different . These are the steps am following here ..

My Data Path , /root/TLESbackup/indices

To Create Repository am using this Curl Command
curl -XPUT 'http://localhost:9200/_snapshot/TL_Backup' -d '{

"type": "fs",
"settings": {
    "compress" : true,
    "location": "/root/TLESbackup"
}

}'

Am getting this error

{"error":"RemoteTransportException[[PrimaryMaster][inet[/10.124.147.218:9300]][cluster:admin/repository/put]]; nested: RepositoryVerificationException[[TL_Backup] [uO_vOTUeQC28gk4gHglvTw, 'RemoteTransportException[[SecondaryMaster][inet[/10.124.147.226:9300]][internal:admin/repository/verify]]; nested: RepositoryVerificationException[[TL_Backup] store location [/root/TLESbackup] is not shared between node [[SecondaryMaster][uO_vOTUeQC28gk4gHglvTw][POC-ES-EM-WDC01.SPOCTO.com][inet[/10.124.147.226:9300]]{master=true}] and the master node]; '], [JXSrkAApSHK4eTapKkFPKg, 'RemoteTransportException[[Slave01][inet[/10.124.147.228:9300]][internal:admin/repository/verify]]; nested: RepositoryVerificationException[[TL_Backup] store location [/root/TLESbackup] is not shared between node [[Slave01][JXSrkAApSHK4eTapKkFPKg][POC-ES-Slave-WDC01.SPOCTO.com][inet[/10.124.147.228:9300]]{master=false}] and the master node]; ']]]; ","status":500}

With a file based repository like this, the (same) /root/TLESbackup directory must be accessible to all nodes. This is typically achieved by sharing the directory via NFS.