Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
68 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
0 answers
69 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
  • 631
0 votes
0 answers
161 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
0 votes
0 answers
96 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
0 votes
0 answers
22 views

In the AWS SDK v1, it was possible to add a ProgressListener directly to a MultipleFileUpload object and set up logging in the progressedChanged method so that the progress of a directory upload could ...
SarahAsparagus's user avatar
0 votes
1 answer
684 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
2 votes
0 answers
155 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
0 votes
0 answers
155 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
1 vote
1 answer
968 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,656
0 votes
1 answer
236 views

Here my SQS listener class: @RequiredArgsConstructor @Slf4j @Service public class SQSS3CreatedNotificationService { private final FluxProperties fluxProperties; private final ...
Jordi's user avatar
  • 23.6k
3 votes
0 answers
414 views

The AWS SDK netty HTTP client is configurable through NettyNioAsyncHttpClient.Builder, but I can't find any documentation on the default values. In particular I'm using the firehose SDK and looking ...
kag0's user avatar
  • 6,104
0 votes
1 answer
1k views

I have a batch application which reads large file from amazon s3. MyS3 config: @Configuration public class S3Configuration { @Bean public S3Client s3Client() { ...
User's user avatar
  • 11
1 vote
1 answer
388 views

I am trying to get used to the Java SDK for AWS but I am failing to get some basic stuff done. The code is supposed to do the following: Upload a zip file to s3 bucket create execution role for ...
Rova's user avatar
  • 25
1 vote
0 answers
946 views

I have a Java application that uses some V2 dependencies to manage our AWS environment. Than, these are my other aws dependencies <dependency> <groupId>software.amazon.awssdk</...
MarioC's user avatar
  • 3,256
1 vote
1 answer
1k views

My KMSClient is being instantiated way before LocalStack is started and I don't know how I should initialise my KmsClientBuilder to override the endpoint. KmsClient.builder().endpointOverride("...
Tymon's user avatar
  • 99
0 votes
0 answers
168 views

Scenario :- I have a Live table with few String columns(<10) and 1 Blob column (to hold binary for PDF).This in on premise cloud in Oracle 19c. Each Blob item has an average size of 2MB, current ...
Niteesh Bhargava's user avatar
0 votes
0 answers
76 views

I have a LambdaFunction on Java 17 and I get a Internal Server Error, if i try to add the s3Client code snippet into my codebase. I really don't know how to get rid of it. Because of IAM I don't have ...
texi's user avatar
  • 48
0 votes
1 answer
153 views

When using AWS Database Encryption SDK I'm facing the error "Invalid response from AWS KMS GeneratedDataKey: Invalid ciphertext". By debugging the AWS SDK v2 (Java), I found that the length ...
Glauber Dantas's user avatar
1 vote
0 answers
84 views

I am doing some investigation on whether it is possible to use DynamoDB streams with encrypted data using the latest DynamoDB sdk updates i.e. can DynamoDB streams decrypt data that was encrypted ...
Seagull's user avatar
  • 2,339
-1 votes
2 answers
1k views

Java: 20.0 Springboot: 3.0.1 Dependency <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>aws-sdk-java</artifactId> <version>2.20....
Prafulla Kumar Sahu's user avatar
1 vote
1 answer
831 views

Is it possible to create a REST API with lambda backend using AWS Java SDK? I have been able to create HTTP API using software.amazon.awssdk.services.apigatewayv2.ApiGatewayV2Client with a lambda ...
Sandeep's user avatar
  • 95
0 votes
0 answers
1k views

I use Spring boot 3 and AWS SDK for Java 2.x When I try to create S3Client I get an error: software.amazon.awssdk.services.sts.model.StsException: User: arn:aws:sts::SOME_NUMBER:assumed-role/SOME_TEXT/...
Łukasz Urbański's user avatar
0 votes
1 answer
338 views

I have a table with both partitionKey and sortKey are defined. Per https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/ddb-en-client-use-multirecord-query.html, I can query single ...
csujiabin's user avatar
3 votes
0 answers
855 views

We have recently done an integration with AWS SageMaker and FeatureStore for one of our use-case. On Cloudwatch, we could see the p99: 50-60ms(Overhead + Model) for sagemaker and p99: 15-20ms for ...
tusharRawat's user avatar
1 vote
0 answers
175 views

All the v2 documentation around the subject just assumes an already serialized json string, but in our existing code using the v1 SDK we easily create Policy objects with Statement objects with ...
Novaterata's user avatar
  • 4,903