interface QueuePolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SQS.QueuePolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssqs#QueuePolicyReference |
Java | software.amazon.awscdk.interfaces.sqs.QueuePolicyReference |
Python | aws_cdk.interfaces.aws_sqs.QueuePolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_sqs » QueuePolicyReference |
A reference to a QueuePolicy 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 queuePolicyReference: interfaces_sqs.QueuePolicyReference = {
queuePolicyId: 'queuePolicyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| queue | string | The Id of the QueuePolicy resource. |
queuePolicyId
Type:
string
The Id of the QueuePolicy resource.

.NET
Go
Java
Python
TypeScript