com.pulumi.aws.sqs.RedrivePolicyArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.sqs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class RedrivePolicyArgs extends com.pulumi.resources.ResourceArgs {
public static final RedrivePolicyArgs Empty = new RedrivePolicyArgs();
/**
* The URL of the SQS Queue to which to attach the policy
*
*/
@Import(name="queueUrl", required=true)
private Output queueUrl;
/**
* @return The URL of the SQS Queue to which to attach the policy
*
*/
public Output queueUrl() {
return this.queueUrl;
}
/**
* The JSON redrive policy for the SQS queue. Accepts two key/val pairs: `deadLetterTargetArn` and `maxReceiveCount`. Learn more in the [Amazon SQS dead-letter queues documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html).
*
*/
@Import(name="redrivePolicy", required=true)
private Output redrivePolicy;
/**
* @return The JSON redrive policy for the SQS queue. Accepts two key/val pairs: `deadLetterTargetArn` and `maxReceiveCount`. Learn more in the [Amazon SQS dead-letter queues documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html).
*
*/
public Output redrivePolicy() {
return this.redrivePolicy;
}
private RedrivePolicyArgs() {}
private RedrivePolicyArgs(RedrivePolicyArgs $) {
this.queueUrl = $.queueUrl;
this.redrivePolicy = $.redrivePolicy;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RedrivePolicyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private RedrivePolicyArgs $;
public Builder() {
$ = new RedrivePolicyArgs();
}
public Builder(RedrivePolicyArgs defaults) {
$ = new RedrivePolicyArgs(Objects.requireNonNull(defaults));
}
/**
* @param queueUrl The URL of the SQS Queue to which to attach the policy
*
* @return builder
*
*/
public Builder queueUrl(Output queueUrl) {
$.queueUrl = queueUrl;
return this;
}
/**
* @param queueUrl The URL of the SQS Queue to which to attach the policy
*
* @return builder
*
*/
public Builder queueUrl(String queueUrl) {
return queueUrl(Output.of(queueUrl));
}
/**
* @param redrivePolicy The JSON redrive policy for the SQS queue. Accepts two key/val pairs: `deadLetterTargetArn` and `maxReceiveCount`. Learn more in the [Amazon SQS dead-letter queues documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html).
*
* @return builder
*
*/
public Builder redrivePolicy(Output redrivePolicy) {
$.redrivePolicy = redrivePolicy;
return this;
}
/**
* @param redrivePolicy The JSON redrive policy for the SQS queue. Accepts two key/val pairs: `deadLetterTargetArn` and `maxReceiveCount`. Learn more in the [Amazon SQS dead-letter queues documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html).
*
* @return builder
*
*/
public Builder redrivePolicy(String redrivePolicy) {
return redrivePolicy(Output.of(redrivePolicy));
}
public RedrivePolicyArgs build() {
if ($.queueUrl == null) {
throw new MissingRequiredPropertyException("RedrivePolicyArgs", "queueUrl");
}
if ($.redrivePolicy == null) {
throw new MissingRequiredPropertyException("RedrivePolicyArgs", "redrivePolicy");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy