@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.275Z") @Stability(value=Stable) public interface QueueAttributes extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sqs.*;
QueueAttributes queueAttributes = QueueAttributes.builder()
.queueArn("queueArn")
// the properties below are optional
.fifo(false)
.keyArn("keyArn")
.queueName("queueName")
.queueUrl("queueUrl")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
QueueAttributes.Builder
A builder for
QueueAttributes |
static class |
QueueAttributes.Jsii$Proxy
An implementation for
QueueAttributes |
| Modifier and Type | Method and Description |
|---|---|
static QueueAttributes.Builder |
builder() |
default Boolean |
getFifo()
Whether this queue is an Amazon SQS FIFO queue.
|
default String |
getKeyArn()
KMS encryption key, if this queue is server-side encrypted by a KMS key.
|
String |
getQueueArn()
The ARN of the queue.
|
default String |
getQueueName()
The name of the queue.
|
default String |
getQueueUrl()
The URL of the queue.
|
@Stability(value=Stable) @NotNull String getQueueArn()
@Stability(value=Stable) @Nullable default Boolean getFifo()
In case of a FIFO queue which is imported from a token, this value has to be explicitly set to true.
Default: - if fifo is not specified, the property will be determined based on the queue name (not possible for FIFO queues imported from a token)
@Stability(value=Stable) @Nullable default String getKeyArn()
Default: - None
@Stability(value=Stable) @Nullable default String getQueueName()
Default: if queue name is not specified, the name will be derived from the queue ARN
@Stability(value=Stable) @Nullable default String getQueueUrl()
Default: - 'https://sqs.
@Stability(value=Stable) static QueueAttributes.Builder builder()
QueueAttributes.Builder of QueueAttributesCopyright © 2022. All rights reserved.