QueueInlinePolicyReference

class aws_cdk.aws_sqs.QueueInlinePolicyReference(*, queue)

Bases: object

A reference to a QueueInlinePolicy resource.

Parameters:

queue (str) – The Queue of the QueueInlinePolicy resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_sqs as sqs

queue_inline_policy_reference = sqs.QueueInlinePolicyReference(
    queue="queue"
)

Attributes

queue

The Queue of the QueueInlinePolicy resource.