All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jashmore.sqs.util.CreateRandomQueueResponse Maven / Gradle / Ivy

Go to download

Provides a local Amazon SQS implementation that can talk to a locally running SQS queue like localstack

There is a newer version: 6.0.0
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy