aws-java-sdk Questions
3
Solved
My goal is to:
reading a file from S3,
changing its metadata
Push it out to S3 again
AWS java SDK doesn't allow outputstreams to be pushed. Therefore, I have to convert the outputstream from ...
Gomorrah asked 26/10, 2016 at 19:11
3
Solved
When I create a new queue and subscribe it to a topic in Java, no message comes. The same via the AWS web console works fine.
I guess I have to confirm the subscription somehow, but the sns.confi...
Diplosis asked 8/2, 2019 at 11:16
7
Solved
Here's the warning that I am getting:
S3AbortableInputStream:Not all bytes were read from the S3ObjectInputStream, aborting HTTP connection. This is likely an error and may result in sub-optimal...
Linkous asked 10/8, 2017 at 22:11
4
Solved
I'm trying to publish some data to SNS from a Lambda function call, but it doesn't seem to be working. My function code is -
public class Handler implements RequestHandler<DynamodbEvent, Void&...
Antimagnetic asked 28/12, 2015 at 8:42
2
Solved
From the API docs dynamo db does support pagination for scan and query operations. The catch here is to set the ExclusiveStartIndex of current request to the value of the LastEvaluatedIndex of prev...
Card asked 25/9, 2015 at 19:1
4
I have a requirement to download photos (not in same directory) from S3, ZIP them and again upload to S3 using AWS S3 Java SDK. This zip file size can go in GBs. Currently I am using AWS Lambda whi...
Erastes asked 17/3, 2019 at 5:39
3
Is there any method in java to check whether a given Log Group and Log Stream exists, before getting log events from the Log Group?
Saunders asked 15/11, 2016 at 3:36
6
I am trying to read large file into chunks from S3 without cutting any line for parallel processing.
Let me explain by example:
There is file of size 1G on S3. I want to divide this file into ch...
Ferdinana asked 6/6, 2017 at 11:46
5
URL url = new URL("https://prod-us-west-2-uploads.s3-us-west-2.amazonaws.com/arn%3Aaws%3Adevicefarm%3Aus-west-2%3A225178842088%3Aproject%3A1e6bbc52-5070-4505-b4aa-592d5e807b15/uploads/arn%3Aaws%3Ad...
Alphosis asked 11/10, 2018 at 9:47
2
Solved
How can I check if the bucket already exists in my Aws S3 account using Java SDK?
Using below code
AmazonS3ClientBuilder.defaultClient().doesBucketExistV2(bucketName);
Checks global existence of ...
Schilit asked 16/7, 2020 at 17:38
4
I am trying to write a Lambda function in java which connects to S3 and then fetch the data.
When I run it locally, using main function it works fine and returns the result.
Buit when I upload it t...
Solidary asked 8/2, 2019 at 8:29
7
Solved
I am trying the Java code example in the Getting Started (Authoring AWS Lambda Code in Java) page, but am stuck as com.amazonaws.services.lambda.runtime pacakge seems to be missing
Here is the sam...
Silicle asked 1/7, 2015 at 4:52
8
After installing java 11 on my system, runtime continues to be 1.8
Versions of java installed:
C:\Program Files\Java\jre1.8.0_201
C:\Program Files\Java\jdk-11.0.3
JAVA_HOME env variable valu...
Pinhole asked 6/6, 2019 at 16:35
3
Solved
I am trying to read and print the contents of a file from a s3 bucket using AWS Java Sdk. I have a presigned URL that lets me access (and download) the file. But, I am unable to read the file using...
Jacaranda asked 16/5, 2017 at 13:45
3
Solved
I'm trying to develop an AWS Java lambda function by following the guidelines described here which describes the implementation of the RequestHandler interface and also references the AWS-lambda-ja...
Lempres asked 2/12, 2018 at 16:33
4
My project is trying to upload files to Amazon S3 using aws-java-sdk-1.11.15. I'm using ant to build my project on CLI. The jackson version I'm using is 2.8.0. I'm adding my lib folder to my classp...
Mortar asked 14/7, 2016 at 17:10
2
Solved
I could not find any examples of this online, nor could I find the documentation explaining how to do this. Basically I have a list of Windows EC2 instances and I need to run the quser command in e...
Crankshaft asked 30/10, 2019 at 14:17
1
We are running a Spring based project with Cognito as the identification service.
We have a project requirement to customise the verification email and invitation email for users in a Cognito use...
Vickyvico asked 27/1, 2017 at 10:13
2
Currently for AWS SDK for Java 1.x im using below code.
@Configuration
@ImportResource("classpath:aws-context.xml")
public class AmazonS3Config {
@Bean(destroyMethod = "shutdown&quo...
Guttering asked 26/4, 2021 at 18:59
4
Solved
Using Eclipse Mars .I have already added aws java sdk 1.11.123 through install software from help.Now when i run Tomcat Server 7 I get this error:
May 02, 2017 11:57:32 PM org.apache.catalina.core....
Mikael asked 2/5, 2017 at 18:33
3
So I just created a Linux instance from EC2 and now I'm trying to install the AWS Java SDK on it. I'm at the end of the installation when I run mvn clean compile exec:java and get this:
[ec2-user@...
Nguyen asked 19/4, 2015 at 7:15
3
Solved
I am not able to connect to AWS kinesis in Spring Cloud Stream Kinesis binder (1.2.0.RELEASE) without using the default configuration at the system level. Only if the system has already been config...
Wichman asked 16/8, 2019 at 7:9
5
Solved
I have been fighting with this for several hours today. I started with the documentation at http://cloud.spring.io/spring-cloud-aws/spring-cloud-aws.html#_sending_mails which doesn't really say a l...
Bajaj asked 15/9, 2017 at 18:29
2
I want to use ContainerCredentialsProvider(CredentialsEndpointProvider)
instead of ContainerCredentialsProvider(), as the latter is deprecated.
Currently I am using deprecated constructor Containe...
Starwort asked 21/11, 2018 at 20:58
2
Solved
Hi All i have created a global exception handler in my spring boot app and writing the exception occurred in AWS cloudwatch below code working fine i am able to write the exception in cloudwatch bu...
Deepseated asked 20/1, 2020 at 13:59
1 Next >
© 2022 - 2024 — McMap. All rights reserved.