software.amazon.awscdk.services.sns.subscriptions.UrlSubscriptionProps Maven / Gradle / Ivy
Show all versions of sns-subscriptions Show documentation
package software.amazon.awscdk.services.sns.subscriptions;
/**
* Options for URL subscriptions.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.15.0 (build 585166b)", date = "2020-12-22T12:13:02.075Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.sns.subscriptions.$Module.class, fqn = "@aws-cdk/aws-sns-subscriptions.UrlSubscriptionProps")
@software.amazon.jsii.Jsii.Proxy(UrlSubscriptionProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface UrlSubscriptionProps extends software.amazon.jsii.JsiiSerializable, software.amazon.awscdk.services.sns.subscriptions.SubscriptionProps {
/**
* The subscription's protocol.
*
* Default: - Protocol is derived from url
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.sns.SubscriptionProtocol getProtocol() {
return null;
}
/**
* The message to the queue is the same as it was sent to the topic.
*
* If false, the message will be wrapped in an SNS envelope.
*
* Default: false
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.Boolean getRawMessageDelivery() {
return null;
}
/**
* @return a {@link Builder} of {@link UrlSubscriptionProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link UrlSubscriptionProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
private software.amazon.awscdk.services.sns.SubscriptionProtocol protocol;
private java.lang.Boolean rawMessageDelivery;
private software.amazon.awscdk.services.sqs.IQueue deadLetterQueue;
private java.util.Map filterPolicy;
/**
* Sets the value of {@link UrlSubscriptionProps#getProtocol}
* @param protocol The subscription's protocol.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder protocol(software.amazon.awscdk.services.sns.SubscriptionProtocol protocol) {
this.protocol = protocol;
return this;
}
/**
* Sets the value of {@link UrlSubscriptionProps#getRawMessageDelivery}
* @param rawMessageDelivery The message to the queue is the same as it was sent to the topic.
* If false, the message will be wrapped in an SNS envelope.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder rawMessageDelivery(java.lang.Boolean rawMessageDelivery) {
this.rawMessageDelivery = rawMessageDelivery;
return this;
}
/**
* Sets the value of {@link UrlSubscriptionProps#getDeadLetterQueue}
* @param deadLetterQueue Queue to be used as dead letter queue.
* If not passed no dead letter queue is enabled.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder deadLetterQueue(software.amazon.awscdk.services.sqs.IQueue deadLetterQueue) {
this.deadLetterQueue = deadLetterQueue;
return this;
}
/**
* Sets the value of {@link UrlSubscriptionProps#getFilterPolicy}
* @param filterPolicy The filter policy.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@SuppressWarnings("unchecked")
public Builder filterPolicy(java.util.Map filterPolicy) {
this.filterPolicy = (java.util.Map)filterPolicy;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link UrlSubscriptionProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public UrlSubscriptionProps build() {
return new Jsii$Proxy(protocol, rawMessageDelivery, deadLetterQueue, filterPolicy);
}
}
/**
* An implementation for {@link UrlSubscriptionProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements UrlSubscriptionProps {
private final software.amazon.awscdk.services.sns.SubscriptionProtocol protocol;
private final java.lang.Boolean rawMessageDelivery;
private final software.amazon.awscdk.services.sqs.IQueue deadLetterQueue;
private final java.util.Map filterPolicy;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.protocol = software.amazon.jsii.Kernel.get(this, "protocol", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.sns.SubscriptionProtocol.class));
this.rawMessageDelivery = software.amazon.jsii.Kernel.get(this, "rawMessageDelivery", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
this.deadLetterQueue = software.amazon.jsii.Kernel.get(this, "deadLetterQueue", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.sqs.IQueue.class));
this.filterPolicy = software.amazon.jsii.Kernel.get(this, "filterPolicy", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.sns.SubscriptionFilter.class)));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
@SuppressWarnings("unchecked")
protected Jsii$Proxy(final software.amazon.awscdk.services.sns.SubscriptionProtocol protocol, final java.lang.Boolean rawMessageDelivery, final software.amazon.awscdk.services.sqs.IQueue deadLetterQueue, final java.util.Map filterPolicy) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.protocol = protocol;
this.rawMessageDelivery = rawMessageDelivery;
this.deadLetterQueue = deadLetterQueue;
this.filterPolicy = (java.util.Map)filterPolicy;
}
@Override
public final software.amazon.awscdk.services.sns.SubscriptionProtocol getProtocol() {
return this.protocol;
}
@Override
public final java.lang.Boolean getRawMessageDelivery() {
return this.rawMessageDelivery;
}
@Override
public final software.amazon.awscdk.services.sqs.IQueue getDeadLetterQueue() {
return this.deadLetterQueue;
}
@Override
public final java.util.Map getFilterPolicy() {
return this.filterPolicy;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getProtocol() != null) {
data.set("protocol", om.valueToTree(this.getProtocol()));
}
if (this.getRawMessageDelivery() != null) {
data.set("rawMessageDelivery", om.valueToTree(this.getRawMessageDelivery()));
}
if (this.getDeadLetterQueue() != null) {
data.set("deadLetterQueue", om.valueToTree(this.getDeadLetterQueue()));
}
if (this.getFilterPolicy() != null) {
data.set("filterPolicy", om.valueToTree(this.getFilterPolicy()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-cdk/aws-sns-subscriptions.UrlSubscriptionProps"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
UrlSubscriptionProps.Jsii$Proxy that = (UrlSubscriptionProps.Jsii$Proxy) o;
if (this.protocol != null ? !this.protocol.equals(that.protocol) : that.protocol != null) return false;
if (this.rawMessageDelivery != null ? !this.rawMessageDelivery.equals(that.rawMessageDelivery) : that.rawMessageDelivery != null) return false;
if (this.deadLetterQueue != null ? !this.deadLetterQueue.equals(that.deadLetterQueue) : that.deadLetterQueue != null) return false;
return this.filterPolicy != null ? this.filterPolicy.equals(that.filterPolicy) : that.filterPolicy == null;
}
@Override
public final int hashCode() {
int result = this.protocol != null ? this.protocol.hashCode() : 0;
result = 31 * result + (this.rawMessageDelivery != null ? this.rawMessageDelivery.hashCode() : 0);
result = 31 * result + (this.deadLetterQueue != null ? this.deadLetterQueue.hashCode() : 0);
result = 31 * result + (this.filterPolicy != null ? this.filterPolicy.hashCode() : 0);
return result;
}
}
}