io.sphere.sdk.subscriptions.SqsDestinationImpl Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.subscriptions;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.lang.String;
import java.net.URI;
import javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.subscriptions.SqsDestination"
)
final class SqsDestinationImpl extends Base implements SqsDestination {
private String accessKey;
private String accessSecret;
private URI queueUrl;
private String region;
private String type;
@JsonCreator
SqsDestinationImpl(final String accessKey, final String accessSecret, final URI queueUrl,
final String region, final String type) {
this.accessKey = accessKey;
this.accessSecret = accessSecret;
this.queueUrl = queueUrl;
this.region = region;
this.type = type;
}
public String getAccessKey() {
return accessKey;
}
public String getAccessSecret() {
return accessSecret;
}
public URI getQueueUrl() {
return queueUrl;
}
public String getRegion() {
return region;
}
public String getType() {
return type;
}
}