aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
2 lines (1 loc) • 3.15 kB
JavaScript
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.QueueGrants=void 0;var jsiiDeprecationWarnings=()=>{var tmp=require("../../.warnings.jsii.js");return jsiiDeprecationWarnings=()=>tmp,tmp};const JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti");var sqs=()=>{var tmp=require("./sqs.generated");return sqs=()=>tmp,tmp},iam=()=>{var tmp=require("../../aws-iam");return iam=()=>tmp,tmp};class QueueGrants{static[JSII_RTTI_SYMBOL_1]={fqn:"aws-cdk-lib.aws_sqs.QueueGrants",version:"2.233.0"};static fromQueue(resource){try{jsiiDeprecationWarnings().aws_cdk_lib_interfaces_aws_sqs_IQueueRef(resource)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.fromQueue),error}return new QueueGrants({resource,encryptedResource:iam().GrantableResources.isEncryptedResource(resource)?resource:void 0,policyResource:iam().GrantableResources.isResourceWithPolicy(resource)?resource:void 0})}resource;encryptedResource;policyResource;constructor(props){this.resource=props.resource,this.encryptedResource=props.encryptedResource,this.policyResource=props.policyResource}consumeMessages(grantee){try{jsiiDeprecationWarnings().aws_cdk_lib_aws_iam_IGrantable(grantee)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.consumeMessages),error}const actions=["sqs:ReceiveMessage","sqs:ChangeMessageVisibility","sqs:GetQueueUrl","sqs:DeleteMessage","sqs:GetQueueAttributes"],result=this.policyResource?iam().Grant.addToPrincipalOrResource({actions,grantee,resourceArns:[sqs().CfnQueue.arnForQueue(this.resource)],resource:this.policyResource}):iam().Grant.addToPrincipal({actions,grantee,resourceArns:[sqs().CfnQueue.arnForQueue(this.resource)]});return this.encryptedResource?.grantOnKey(grantee,"kms:Decrypt"),result}sendMessages(grantee){try{jsiiDeprecationWarnings().aws_cdk_lib_aws_iam_IGrantable(grantee)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.sendMessages),error}const actions=["sqs:SendMessage","sqs:GetQueueAttributes","sqs:GetQueueUrl"],result=this.policyResource?iam().Grant.addToPrincipalOrResource({actions,grantee,resourceArns:[sqs().CfnQueue.arnForQueue(this.resource)],resource:this.policyResource}):iam().Grant.addToPrincipal({actions,grantee,resourceArns:[sqs().CfnQueue.arnForQueue(this.resource)]});return this.encryptedResource?.grantOnKey(grantee,"kms:Decrypt","kms:Encrypt","kms:ReEncrypt*","kms:GenerateDataKey*"),result}purge(grantee){try{jsiiDeprecationWarnings().aws_cdk_lib_aws_iam_IGrantable(grantee)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.purge),error}const actions=["sqs:PurgeQueue","sqs:GetQueueAttributes","sqs:GetQueueUrl"];return this.policyResource?iam().Grant.addToPrincipalOrResource({actions,grantee,resourceArns:[sqs().CfnQueue.arnForQueue(this.resource)],resource:this.policyResource}):iam().Grant.addToPrincipal({actions,grantee,resourceArns:[sqs().CfnQueue.arnForQueue(this.resource)]})}}exports.QueueGrants=QueueGrants;