Skip to main content
0 votes
1 answer
102 views

I am configuring SQS client as shown in the below snippet: SqsClient client = SqsClient.builder() .region(region) .credentialsProvider(DefaultCredentialsProvider.create(...
Rishi Chaturvedi's user avatar
0 votes
1 answer
79 views

I'm using quarkus-logging-json in my project and want to add automatic EMF logs to my Lambda clients like this: LambdaAsyncClient.builder() .httpClient(NettyNioAsyncHttpClient.create()) ...
Michiel's user avatar
  • 123
0 votes
0 answers
97 views

Using software.amazon.awssdk:s3:2.32.11 I started with the following code: var objectKey = "test.txt"; var path = Path.of("/tmp/test/log.txt"); var credentials = ...
justis's user avatar
  • 659
0 votes
0 answers
97 views

I'm trying to use an existing AWS JSON response to do exploratory tests with so I don't use resources I don't have permissions for. My company has strict AWS permissions although someone has given me ...
DPS100's user avatar
  • 83
0 votes
0 answers
240 views

In aws sdk v1 : @DynamoDBAutoGeneratedTimestamp(strategy = DynamoDBAutoGenerateStrategy.CREATE) Above annotation was there to create auto generated time field. In aws sdk v2 replaced with below code: ...
adarsh's user avatar
  • 142
1 vote
1 answer
118 views

I am upgrading AWS' Java SDK from 1.x to 2.x. In 2.x, it seems that most exceptional cases are modeled with Unchecked Exceptions, as opposed to Checked Exceptions like it was in 1.x. When trying to ...
davidalayachew's user avatar
0 votes
0 answers
102 views

I am looking for the way how to compare two files (especially large files) in S3 within the same bucket using Java AWS SDK. I do not need to verify whole bucket if there are duplicates. As I ...
Bronek Kristal's user avatar
1 vote
1 answer
217 views

I'm migrating a java project that was using the AWS SDK 1.x to list and iterate through objects lazily in S3. S3Objects iterableS3Objects = S3Objects.withPrefix(amazonS3, myBucketName, myPrefix); for ...
Parker H Gordon's user avatar
0 votes
1 answer
739 views

I am creating HTTP requests with the AWS CRT HTTP Client, but I cannot find a way to set the request body. I am using Java 11 with the AWS SDK version 2.27.9. No matter how I configure this ...
Flumenque's user avatar
1 vote
1 answer
96 views

I would like to implement the AwsCrtHttpClient and intercept the HTTP requests in the unit tests with Hoverfly, but Hoverfly is not intercepting the requests. The client is initialized like: private ...
Flumenque's user avatar
2 votes
0 answers
165 views

I have a Spring Boot reactive application running on both ECS and EKS, with similar hardware configuration (cpu:6 and memory 16G). This applications has a REST API endpoint that updates multiple ...
Shankar's user avatar
  • 2,895
1 vote
0 answers
117 views

I'm using the AWS SDK v2 for Java to upload JSON data to an S3 bucket. However, after the upload, the file in S3 contains a random string prefix and the JSON data appears to be incomplete or corrupted....
Med-KG's user avatar
  • 109
0 votes
0 answers
171 views

I'm trying to connect to AWS MQTT3 via websockets with authentication from Cognito, but I'm getting Caused by: software.amazon.awssdk.crt.mqtt.MqttException: The connection was closed unexpectedly.. ...
MAGx2's user avatar
  • 3,199
0 votes
1 answer
300 views

I am new to AWS and wanted to ask a question about Amazon SQS and AWS SDK. From my understanding SQS has visibility timeout feature and after making ReceiveMessage request call the message gets hidden ...
Mykoliux's user avatar
  • 163
1 vote
1 answer
1k views

I have run MinIO in a docker container, created a bucket (test), made the bucket as public, created access key, set a server location (us-east-1). After that I build a client: final S3Client client = ...
nik0x1's user avatar
  • 1,798

15 30 50 per page
1
2 3 4 5
13