Class SqsSubscriptionProps.Builder
java.lang.Object
software.amazon.awscdk.services.sns.subscriptions.SqsSubscriptionProps.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<SqsSubscriptionProps>
- Enclosing interface:
SqsSubscriptionProps
@Stability(Stable)
public static final class SqsSubscriptionProps.Builder
extends Object
implements software.amazon.jsii.Builder<SqsSubscriptionProps>
A builder for
SqsSubscriptionProps-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds the configured instance.deadLetterQueue(IQueue deadLetterQueue) Sets the value ofSubscriptionProps.getDeadLetterQueue()filterPolicy(Map<String, ? extends SubscriptionFilter> filterPolicy) Sets the value ofSubscriptionProps.getFilterPolicy()filterPolicyWithMessageBody(Map<String, ? extends FilterOrPolicy> filterPolicyWithMessageBody) Sets the value ofSubscriptionProps.getFilterPolicyWithMessageBody()rawMessageDelivery(Boolean rawMessageDelivery) Sets the value ofSqsSubscriptionProps.getRawMessageDelivery()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
rawMessageDelivery
@Stability(Stable) public SqsSubscriptionProps.Builder rawMessageDelivery(Boolean rawMessageDelivery) Sets the value ofSqsSubscriptionProps.getRawMessageDelivery()- Parameters:
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.- Returns:
this
-
deadLetterQueue
Sets the value ofSubscriptionProps.getDeadLetterQueue()- Parameters:
deadLetterQueue- Queue to be used as dead letter queue. If not passed no dead letter queue is enabled.- Returns:
this
-
filterPolicy
@Stability(Stable) public SqsSubscriptionProps.Builder filterPolicy(Map<String, ? extends SubscriptionFilter> filterPolicy) Sets the value ofSubscriptionProps.getFilterPolicy()- Parameters:
filterPolicy- The filter policy.- Returns:
this
-
filterPolicyWithMessageBody
@Stability(Stable) public SqsSubscriptionProps.Builder filterPolicyWithMessageBody(Map<String, ? extends FilterOrPolicy> filterPolicyWithMessageBody) Sets the value ofSubscriptionProps.getFilterPolicyWithMessageBody()- Parameters:
filterPolicyWithMessageBody- The filter policy that is applied on the message body. To apply a filter policy to the message attributes, usefilterPolicy. A maximum of one offilterPolicyWithMessageBodyandfilterPolicymay be used.- Returns:
this
-
build
Builds the configured instance.- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<SqsSubscriptionProps>- Returns:
- a new instance of
SqsSubscriptionProps - Throws:
NullPointerException- if any required attribute was not provided
-