aws-cdk-lib.aws_sqs.CfnQueuePolicyProps

interface CfnQueuePolicyProps

LanguageType name
.NETAmazon.CDK.AWS.SQS.CfnQueuePolicyProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssqs#CfnQueuePolicyProps
Javasoftware.amazon.awscdk.services.sqs.CfnQueuePolicyProps
Pythonaws_cdk.aws_sqs.CfnQueuePolicyProps
TypeScript aws-cdk-lib » aws_sqs » CfnQueuePolicyProps

Properties for defining a CfnQueuePolicy.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sqs as sqs } from 'aws-cdk-lib';

declare const policyDocument: any;
const cfnQueuePolicyProps: sqs.CfnQueuePolicyProps = {
  policyDocument: policyDocument,
  queues: ['queues'],
};

Properties

NameTypeDescription
policyDocumentanyA policy document that contains the permissions for the specified Amazon SQS queues.
queuesstring[]The URLs of the queues to which you want to add the policy.

policyDocument

Type: any

A policy document that contains the permissions for the specified Amazon SQS queues.

For more information about Amazon SQS policies, see Using custom policies with the Amazon SQS access policy language in the Amazon SQS Developer Guide .


queues

Type: string[]

The URLs of the queues to which you want to add the policy.

You can use the [Ref](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ref.html) function to specify an [AWS::SQS::Queue](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html) resource.