io.sphere.sdk.subscriptions.SnsDestinationImpl 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 javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.subscriptions.SnsDestination"
)
final class SnsDestinationImpl extends Base implements SnsDestination {
private String accessKey;
private String accessSecret;
private String topicArn;
private String type;
@JsonCreator
SnsDestinationImpl(final String accessKey, final String accessSecret, final String topicArn,
final String type) {
this.accessKey = accessKey;
this.accessSecret = accessSecret;
this.topicArn = topicArn;
this.type = type;
}
public String getAccessKey() {
return accessKey;
}
public String getAccessSecret() {
return accessSecret;
}
public String getTopicArn() {
return topicArn;
}
public String getType() {
return type;
}
}