Interface QueueAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
QueueAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.946Z")
@Stability(Stable)
public interface QueueAttributes
extends software.amazon.jsii.JsiiSerializable
Reference to a queue.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forQueueAttributes
static final class
An implementation forQueueAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic QueueAttributes.Builder
builder()
default Boolean
getFifo()
Whether this queue is an Amazon SQS FIFO queue.default String
KMS encryption key, if this queue is server-side encrypted by a KMS key.The ARN of the queue.default String
The name of the queue.default String
The URL of the queue.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQueueArn
The ARN of the queue. -
getFifo
Whether this queue is an Amazon SQS FIFO queue. If false, this is a standard queue.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)
-
getKeyArn
KMS encryption key, if this queue is server-side encrypted by a KMS key.Default: - None
-
getQueueName
The name of the queue.Default: if queue name is not specified, the name will be derived from the queue ARN
-
getQueueUrl
The URL of the queue.Default: - 'https://sqs.invalid input: '<'region-endpoint>/invalid input: '<'account-ID>/invalid input: '<'queue-name>'
- See Also:
-
builder
- Returns:
- a
QueueAttributes.Builder
ofQueueAttributes
-