com.jashmore.sqs.util.CreateRandomQueueResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of local-sqs-async-client Show documentation
Show all versions of local-sqs-async-client Show documentation
Provides a local Amazon SQS implementation that can talk to a locally running SQS queue like localstack
package com.jashmore.sqs.util;
import lombok.Builder;
import lombok.Value;
import software.amazon.awssdk.services.sqs.model.CreateQueueResponse;
@Value
@Builder
public class CreateRandomQueueResponse {
CreateQueueResponse response;
String queueName;
public String queueUrl() {
return response.queueUrl();
}
}