File transfer from FSx to S3 using a lambda function in Java

0

I am using an Amazon Lambda function with an SMBClient in Java to connect and list the files in my FileShare System which is Amazon Fsx. I want to explore transferring the files listed to Amazon S3. Is there a way to do this by adding on the code? AWS Data Sync is impossible due to restrictions of my organisation. Will appreciate any help, thank you!!

My current code in Lambda is like this to connect to FSx:

//Configuration to adjust timeout SMBConfig config = SmbConfig.builder() .withDialects(SMB2Dialect.SMB_3_1_1) .withTimeout(900000,TimeUnit.MILLISECONDS) .withSoTimeout(20000,TimeUnit.MILLISECONDS) .withEncryptData(true) .withDfsEnabled(true) .build();

//Authentication AuthenticationContext context = new AuthenticationContext("USERNAME","PASSWORD".toCharArray(), "DOMAIN");

try (SMBClient smbClient = new SMBClient(config);
     Connection connection = smbClient.connect("SERVERNAME")) 
     Session session = connection.authenticate(context);

    // Connecting to Shared File System
    DiskShare share = (DiskShare) session.connectShare("SHARENAME")) {
    List<FileIdBothDirectoryInformation> fileList = share.list("FOLDER");
    System.out.println("File list:");
    fileList.forEach(f -> System.out.printLn(f.getFileName()));
    }
K
demandé il y a 2 mois107 vues
1 réponse
0
psp
répondu il y a un mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions