software.amazon.awscdk.services.sns.subscriptions.EmailSubscriptionProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sns-subscriptions Show documentation
Show all versions of sns-subscriptions Show documentation
CDK Subscription Constructs for AWS SNS
package software.amazon.awscdk.services.sns.subscriptions;
/**
* Options for email subscriptions.
*/
@javax.annotation.Generated(value = "jsii-pacmak/0.17.0 (build 7d5d104)", date = "2019-09-30T08:37:14.830Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface EmailSubscriptionProps extends software.amazon.jsii.JsiiSerializable, software.amazon.awscdk.services.sns.subscriptions.SubscriptionProps {
/**
* Indicates if the full notification JSON should be sent to the email address or just the message text.
*
* Default: false (Message text)
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
java.lang.Boolean getJson();
/**
* @return a {@link Builder} of {@link EmailSubscriptionProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link EmailSubscriptionProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder {
private java.lang.Boolean json;
private java.util.Map filterPolicy;
/**
* Sets the value of Json
* @param json Indicates if the full notification JSON should be sent to the email address or just the message text.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder json(java.lang.Boolean json) {
this.json = json;
return this;
}
/**
* Sets the value of FilterPolicy
* @param filterPolicy The filter policy.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder filterPolicy(java.util.Map filterPolicy) {
this.filterPolicy = filterPolicy;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link EmailSubscriptionProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public EmailSubscriptionProps build() {
return new Jsii$Proxy(json, filterPolicy);
}
}
/**
* An implementation for {@link EmailSubscriptionProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements EmailSubscriptionProps {
private final java.lang.Boolean json;
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(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.setObjRef(objRef);
this.json = this.jsiiGet("json", java.lang.Boolean.class);
this.filterPolicy = this.jsiiGet("filterPolicy", java.util.Map.class);
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
private Jsii$Proxy(java.lang.Boolean json, java.util.Map filterPolicy) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.json = json;
this.filterPolicy = filterPolicy;
}
@Override
public java.lang.Boolean getJson() {
return this.json;
}
@Override
public java.util.Map getFilterPolicy() {
return this.filterPolicy;
}
@Override
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getJson() != null) {
obj.set("json", om.valueToTree(this.getJson()));
}
if (this.getFilterPolicy() != null) {
obj.set("filterPolicy", om.valueToTree(this.getFilterPolicy()));
}
return obj;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
EmailSubscriptionProps.Jsii$Proxy that = (EmailSubscriptionProps.Jsii$Proxy) o;
if (this.json != null ? !this.json.equals(that.json) : that.json != null) return false;
return this.filterPolicy != null ? this.filterPolicy.equals(that.filterPolicy) : that.filterPolicy == null;
}
@Override
public int hashCode() {
int result = this.json != null ? this.json.hashCode() : 0;
result = 31 * result + (this.filterPolicy != null ? this.filterPolicy.hashCode() : 0);
return result;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy