Interface CfnQueueInlinePolicyProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQueueInlinePolicyProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:18.318Z")
@Stability(Stable)
public interface CfnQueueInlinePolicyProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnQueueInlinePolicy.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sqs.*;
Object policyDocument;
CfnQueueInlinePolicyProps cfnQueueInlinePolicyProps = CfnQueueInlinePolicyProps.builder()
.policyDocument(policyDocument)
.queue("queue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQueueInlinePolicyPropsstatic final classAn implementation forCfnQueueInlinePolicyProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPolicyDocument
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 .
- See Also:
-
getQueue
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.- See Also:
-
builder
- Returns:
- a
CfnQueueInlinePolicyProps.BuilderofCfnQueueInlinePolicyProps
-