QueueProps

class aws_cdk.aws_sqs.QueueProps(*, content_based_deduplication=None, data_key_reuse=None, dead_letter_queue=None, deduplication_scope=None, delivery_delay=None, encryption=None, encryption_master_key=None, enforce_ssl=None, fifo=None, fifo_throughput_limit=None, max_message_size_bytes=None, queue_name=None, receive_message_wait_time=None, redrive_allow_policy=None, removal_policy=None, retention_period=None, visibility_timeout=None)

Bases: object

Properties for creating a new Queue.

Parameters:
  • content_based_deduplication (Optional[bool]) – Specifies whether to enable content-based deduplication. During the deduplication interval (5 minutes), Amazon SQS treats messages that are sent with identical content (excluding attributes) as duplicates and delivers only one copy of the message. If you don’t enable content-based deduplication and you want to deduplicate messages, provide an explicit deduplication ID in your SendMessage() call. (Only applies to FIFO queues.) Default: false

  • data_key_reuse (Optional[Duration]) – The length of time that Amazon SQS reuses a data key before calling KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes). Default: Duration.minutes(5)

  • dead_letter_queue (Union[DeadLetterQueue, Dict[str, Any], None]) – Send messages to this queue if they were unsuccessfully dequeued a number of times. Default: no dead-letter queue

  • deduplication_scope (Optional[DeduplicationScope]) – For high throughput for FIFO queues, specifies whether message deduplication occurs at the message group or queue level. (Only applies to FIFO queues.) Default: DeduplicationScope.QUEUE

  • delivery_delay (Optional[Duration]) – The time in seconds that the delivery of all messages in the queue is delayed. You can specify an integer value of 0 to 900 (15 minutes). The default value is 0. Default: 0

  • encryption (Optional[QueueEncryption]) – Whether the contents of the queue are encrypted, and by what type of key. Be aware that encryption is not available in all regions, please see the docs for current availability details. Default: SQS_MANAGED (SSE-SQS) for newly created queues

  • encryption_master_key (Optional[IKey]) – External KMS key to use for queue encryption. Individual messages will be encrypted using data keys. The data keys in turn will be encrypted using this key, and reused for a maximum of dataKeyReuseSecs seconds. If the ‘encryptionMasterKey’ property is set, ‘encryption’ type will be implicitly set to “KMS”. Default: If encryption is set to KMS and not specified, a key will be created.

  • enforce_ssl (Optional[bool]) – Enforce encryption of data in transit. Default: false

  • fifo (Optional[bool]) – Whether this a first-in-first-out (FIFO) queue. Default: false, unless queueName ends in ‘.fifo’ or ‘contentBasedDeduplication’ is true.

  • fifo_throughput_limit (Optional[FifoThroughputLimit]) – For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. (Only applies to FIFO queues.) Default: FifoThroughputLimit.PER_QUEUE

  • max_message_size_bytes (Union[int, float, None]) – The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer value from 1024 bytes (1 KiB) to 262144 bytes (256 KiB). The default value is 262144 (256 KiB). Default: 256KiB

  • queue_name (Optional[str]) – A name for the queue. If specified and this is a FIFO queue, must end in the string ‘.fifo’. Default: CloudFormation-generated name

  • receive_message_wait_time (Optional[Duration]) – Default wait time for ReceiveMessage calls. Does not wait if set to 0, otherwise waits this amount of seconds by default for messages to arrive. For more information, see Amazon SQS Long Poll. Default: 0

  • redrive_allow_policy (Union[RedriveAllowPolicy, Dict[str, Any], None]) – The string that includes the parameters for the permissions for the dead-letter queue redrive permission and which source queues can specify dead-letter queues. Default: - All source queues can designate this queue as their dead-letter queue.

  • removal_policy (Optional[RemovalPolicy]) – Policy to apply when the queue is removed from the stack. Even though queues are technically stateful, their contents are transient and it is common to add and remove Queues while rearchitecting your application. The default is therefore DESTROY. Change it to RETAIN if the messages are so valuable that accidentally losing them would be unacceptable. Default: RemovalPolicy.DESTROY

  • retention_period (Optional[Duration]) – The number of seconds that Amazon SQS retains a message. You can specify an integer value from 60 seconds (1 minute) to 1209600 seconds (14 days). The default value is 345600 seconds (4 days). Default: Duration.days(4)

  • visibility_timeout (Optional[Duration]) – Timeout of processing a single message. After dequeuing, the processor has this much time to handle the message and delete it from the queue before it becomes visible again for dequeueing by another processor. Values must be from 0 to 43200 seconds (12 hours). If you don’t specify a value, AWS CloudFormation uses the default value of 30 seconds. Default: Duration.seconds(30)

ExampleMetadata:

infused

Example:

topic = sns.Topic(self, "Topic")
dl_queue = sqs.Queue(self, "DeadLetterQueue",
    queue_name="MySubscription_DLQ",
    retention_period=Duration.days(14)
)

sns.Subscription(self, "Subscription",
    endpoint="endpoint",
    protocol=sns.SubscriptionProtocol.LAMBDA,
    topic=topic,
    dead_letter_queue=dl_queue
)

Attributes

content_based_deduplication

Specifies whether to enable content-based deduplication.

During the deduplication interval (5 minutes), Amazon SQS treats messages that are sent with identical content (excluding attributes) as duplicates and delivers only one copy of the message.

If you don’t enable content-based deduplication and you want to deduplicate messages, provide an explicit deduplication ID in your SendMessage() call.

(Only applies to FIFO queues.)

Default:

false

data_key_reuse

The length of time that Amazon SQS reuses a data key before calling KMS again.

The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes).

Default:

Duration.minutes(5)

dead_letter_queue

Send messages to this queue if they were unsuccessfully dequeued a number of times.

Default:

no dead-letter queue

deduplication_scope

For high throughput for FIFO queues, specifies whether message deduplication occurs at the message group or queue level.

(Only applies to FIFO queues.)

Default:

DeduplicationScope.QUEUE

delivery_delay

The time in seconds that the delivery of all messages in the queue is delayed.

You can specify an integer value of 0 to 900 (15 minutes). The default value is 0.

Default:

0

encryption

Whether the contents of the queue are encrypted, and by what type of key.

Be aware that encryption is not available in all regions, please see the docs for current availability details.

Default:

SQS_MANAGED (SSE-SQS) for newly created queues

encryption_master_key

External KMS key to use for queue encryption.

Individual messages will be encrypted using data keys. The data keys in turn will be encrypted using this key, and reused for a maximum of dataKeyReuseSecs seconds.

If the ‘encryptionMasterKey’ property is set, ‘encryption’ type will be implicitly set to “KMS”.

Default:

If encryption is set to KMS and not specified, a key will be created.

enforce_ssl

Enforce encryption of data in transit.

Default:

false

See:

https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-security-best-practices.html#enforce-encryption-data-in-transit

fifo

Whether this a first-in-first-out (FIFO) queue.

Default:

false, unless queueName ends in ‘.fifo’ or ‘contentBasedDeduplication’ is true.

fifo_throughput_limit

For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group.

(Only applies to FIFO queues.)

Default:

FifoThroughputLimit.PER_QUEUE

max_message_size_bytes

The limit of how many bytes that a message can contain before Amazon SQS rejects it.

You can specify an integer value from 1024 bytes (1 KiB) to 262144 bytes (256 KiB). The default value is 262144 (256 KiB).

Default:

256KiB

queue_name

A name for the queue.

If specified and this is a FIFO queue, must end in the string ‘.fifo’.

Default:

CloudFormation-generated name

receive_message_wait_time

Default wait time for ReceiveMessage calls.

Does not wait if set to 0, otherwise waits this amount of seconds by default for messages to arrive.

For more information, see Amazon SQS Long Poll.

Default:

0

redrive_allow_policy

The string that includes the parameters for the permissions for the dead-letter queue redrive permission and which source queues can specify dead-letter queues.

Default:
  • All source queues can designate this queue as their dead-letter queue.

removal_policy

Policy to apply when the queue is removed from the stack.

Even though queues are technically stateful, their contents are transient and it is common to add and remove Queues while rearchitecting your application. The default is therefore DESTROY. Change it to RETAIN if the messages are so valuable that accidentally losing them would be unacceptable.

Default:

RemovalPolicy.DESTROY

retention_period

The number of seconds that Amazon SQS retains a message.

You can specify an integer value from 60 seconds (1 minute) to 1209600 seconds (14 days). The default value is 345600 seconds (4 days).

Default:

Duration.days(4)

visibility_timeout

Timeout of processing a single message.

After dequeuing, the processor has this much time to handle the message and delete it from the queue before it becomes visible again for dequeueing by another processor.

Values must be from 0 to 43200 seconds (12 hours). If you don’t specify a value, AWS CloudFormation uses the default value of 30 seconds.

Default:

Duration.seconds(30)