Questions tagged [awss3transferutility]

58 questions
0
votes
1 answer

Copy Deep Glacier S3 Data From One AWS account to another account

I have 4 S3 Buckets, in which I have almost 40Tbs of data which includes 90% of Deep archive S3 Tiers. I need to move this data to another AWS Account since am planning to close my account. NOTE: Both s3 is in the region ap-south-1 Suggest a way…
0
votes
0 answers

"Cannot pass function of type '(Bool) async throws -> Void' to parameter expecting synchronous function type"

After downloading json File from S3 bucket, I want to convert the json file string to a custom struct model object. But I am continuously getting error as "Cannot pass function of type '(Bool) async throws -> Void' to parameter expecting synchronous…
Juno
  • 347
  • 2
  • 11
0
votes
1 answer

AWS S3 Multipart file upload issue using TransferUtility (aws-chunked is not supported) in .NET 6

I have faced issue while trying to use AWS S3 High-Level API client. The code I am using is pretty much the same as described in AWS example docs -…
Jaroslav
  • 191
  • 1
  • 12
0
votes
0 answers

SWIFT: Unable to downlaod larger files from aws bucket using transfer utility

I have a swift application and there is a requirement to download mp4 files from AWS bucket. I'm able to download file with smaller sizes but can't download files above particular sizes say 2GB and its depend on device too. While trying to download…
0
votes
0 answers

Unable to execute below closure due to parameter type in swift

I have a situation to upload content to S3 Bucket AWS. I am using the below code and the code is not compiled. Please advise. let data = // The data to upload let expression = AWSS3TransferUtilityUploadExpression() expression.progressBlock =…
0
votes
0 answers

delete file from s3 bucket swift

I have used this answer to delete a file from s3 bucket The task I need to perform is when I'm uploading a new image I need to delete the previous one. So after upload, I'm calling deletion for the previous image. The deletion method gives me…
Krutika Sonawala
  • 1,065
  • 1
  • 12
  • 30
0
votes
0 answers

Wrong Last Modified Date in AWS S3

While uploading file one by one to AWS S3 bucket using Java code, I'm observing a strange issue with Last Modified Date column, all the files are showing same last modified date. I followed few posted in StackOverFlow but no-where is properly…
0
votes
1 answer

AWSS3TransferUtility: How to retry failed upload task after app restart

I want to retry previously failed S3 upload tasks after app restart. On app init, I call // register a transfer utility object asynchronously AWSS3TransferUtility.register( with: configuration!, transferUtilityConfiguration:…
rysv
  • 2,416
  • 7
  • 30
  • 48
0
votes
1 answer

AWS.SDK TransferUtility.Upload hangs

I have the following code Dim fileTransferUtility = New TransferUtility(new AmazonS3Client(credentials,region)) Dim fileTransferUtilityRequest = New TransferUtilityUploadRequest With { .BucketName = bucketName, .FilePath = sourceFileName, …
bzamfir
  • 4,698
  • 10
  • 54
  • 89
0
votes
1 answer

Amazon s3 upload service not uploading large files

I have a UWP app that Upload a file to an S3 Bucket using the AWS SDK for .NET (high-level API) that is TransferUtility. This API works very well when I am uploading small size recording files but when I upload larger files the file does not seem…
Shakita
  • 99
  • 2
  • 12
0
votes
1 answer

AWSS3TransferUtility uploading with Cognito authentication configuration issues?

I have an app that authenticates with Cognito and has been working fine. Now I need to reuse the authentication and returned token to upload files to S3. My understanding is that AWSS3TransferUtility is the way to go at this point. Only it is not…
kos
  • 1,357
  • 9
  • 21
0
votes
1 answer

How to use TransferUtility with Cognito user / Identity pools in Android

I need to upload one file in Android to an s3 bucket. We want to authenticate the upload with Cognito User pools. The standard way to do this would be to use the Storage API from the Amazon Amplify SDK. Problem is that I need to report upload…
0
votes
1 answer

Does `TransferUtility` from the android Amazon AWS Mobile SDK run in its own `Service`?

I am using TransferUtility to upload big files to S3. (https://docs.aws.amazon.com/mobile/sdkforxamarin/developerguide/s3-integration-transferutility.html) Can anyone confirm that TransferUtility creates its own Android Service for this? Files are…
GaRRaPeTa
  • 5,459
  • 4
  • 37
  • 61
0
votes
1 answer

transferUtility.uploadData works perfectly fine with iOS simulator, but not working while testing on actual device iOS13

I have followed some of tutorials from https://www.youtube.com/watch?v=UMgApUhg7ic to upload image to my s3 bucket. This tutorial works perfectly fine with iOS simulator, but not working on my test iphone7. I have written some debug codes to figure…
Shawn N
  • 17
  • 4
0
votes
1 answer

AWS S3 : TransferUtility dose not contain the definition for UploadAsync in asp.net

While using following code getting the error TransferUtility does not contain the definition for UploadAsync TransferUtility fileTransferUtility = new TransferUtility(s3Client); TransferUtilityUploadRequest uploadRequest = new…
komal kosbatwar
  • 161
  • 2
  • 7