interface CfnQueueInlinePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SQS.Mixins.CfnQueueInlinePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssqs/mixins#CfnQueueInlinePolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sqs.mixins.CfnQueueInlinePolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_sqs.mixins.CfnQueueInlinePolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sqs » mixins » CfnQueueInlinePolicyMixinProps |
Properties for CfnQueueInlinePolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sqs_mixins } from '@aws-cdk/mixins-preview/aws-sqs';
declare const policyDocument: any;
const cfnQueueInlinePolicyMixinProps: sqs_mixins.CfnQueueInlinePolicyMixinProps = {
policyDocument: policyDocument,
queue: 'queue',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | any | A policy document that contains the permissions for the specified Amazon SQS queues. |
| queue? | string | The URLs of the queues to which you want to add the policy. |
policyDocument?
Type:
any
(optional)
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 .
queue?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript