interface QueueInlinePolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SQS.QueueInlinePolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssqs#QueueInlinePolicyReference |
Java | software.amazon.awscdk.interfaces.sqs.QueueInlinePolicyReference |
Python | aws_cdk.interfaces.aws_sqs.QueueInlinePolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_sqs » QueueInlinePolicyReference |
A reference to a QueueInlinePolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sqs as interfaces_sqs } from 'aws-cdk-lib/interfaces';
const queueInlinePolicyReference: interfaces_sqs.QueueInlinePolicyReference = {
queue: 'queue',
};
Properties
| Name | Type | Description |
|---|---|---|
| queue | string | The Queue of the QueueInlinePolicy resource. |
queue
Type:
string
The Queue of the QueueInlinePolicy resource.

.NET
Go
Java
Python
TypeScript