What to include for stepfunctions in newer AWS Java SDK 2.x for Maven?
Hello.
I'm working on porting from the 1.x to the 2.x AWS Java SDK library. Most of the porting (sns, sqs, secretsmanager, etc.) has been straightforward. However, I'm having trouble finding anything for the stepfunctions client.
I've added:
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sfn</artifactId>
</dependency>
but then, I'm at a loss for finding the new[er] equivalent for the AWSStepFunctions.java class. Oddly enough, there isn't much examples or references out there for this either. The AWS Java SDK 2.x does not have any examples either.
Thanks!
Answer my own question, it looks something like this:
SfnClient stepFunctionsClient = SfnClient.builder().region(Region.US_EAST_1).build();
Relevant questions
moto equivalent library for java/kotlin
asked 5 days agocredentials working with CLI but not with Java SDK
asked 3 months agoAvailability of SQS Temporary and Virtual Queues in Languages Other Than Java.
asked 5 months agoReading SQS Message via Listener
asked a month agoJava 2.X Lambda RequestHandler and Context documentation
asked 4 months agoHow to send messages with GameLift Client in Java
asked 5 months agoWhat to include for stepfunctions in newer AWS Java SDK 2.x for Maven?
asked 2 years agoCognito Java examples
Accepted Answerasked 2 months agoGradle can't find AWS libraries
asked 2 years agoJava IoT connection kit won't build...
Accepted Answerasked 24 days ago