I am able to put the connection for my S3 Bucket:
 const config = {
      bucketName: 'angular-upload-files-2023-2024',
      dirName: '/properties2023/',
      region: 'ap-south-1',
      accessKeyId: environment.accessKeyId,
      secretAccessKey: environment.secretAccessKey,
      s3Url: 'https://angular-upload-files-2023-2024.s3.amazonaws.com/'
}
const S3CustomClient = new AWSS3UploadAsh(config);
So now, how can I make a table or card component to add the files from the directory in my bucket "properties2023", in other words how to loop through files inside the directory in my S3 bucket?