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
-
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()
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
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<SqsSubscriptionProps>
- Returns:
- a new instance of
SqsSubscriptionProps
- Throws:
NullPointerException
- if any required attribute was not provided
-