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
preguntada hace 2 meses107 visualizaciones
1 Respuesta
0
psp
respondido hace un mes

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas