UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

2 lines (1 loc) 2.24 kB
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.LogGroupGrants=void 0;var jsiiDeprecationWarnings=()=>{var tmp=require("../../.warnings.jsii.js");return jsiiDeprecationWarnings=()=>tmp,tmp};const JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti");var logs=()=>{var tmp=require("./logs.generated");return logs=()=>tmp,tmp},iam=()=>{var tmp=require("../../aws-iam");return iam=()=>tmp,tmp};class LogGroupGrants{static[JSII_RTTI_SYMBOL_1]={fqn:"aws-cdk-lib.aws_logs.LogGroupGrants",version:"2.233.0"};static fromLogGroup(resource){try{jsiiDeprecationWarnings().aws_cdk_lib_interfaces_aws_logs_ILogGroupRef(resource)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.fromLogGroup),error}return new LogGroupGrants({resource,policyResource:iam().GrantableResources.isResourceWithPolicy(resource)?resource:void 0})}resource;policyResource;constructor(props){this.resource=props.resource,this.policyResource=props.policyResource}write(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.write),error}const actions=["logs:CreateLogStream","logs:PutLogEvents"];return this.policyResource?iam().Grant.addToPrincipalOrResource({actions,grantee,resourceArns:[logs().CfnLogGroup.arnForLogGroup(this.resource)],resource:this.policyResource}):iam().Grant.addToPrincipal({actions,grantee,resourceArns:[logs().CfnLogGroup.arnForLogGroup(this.resource)]})}read(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.read),error}const actions=["logs:FilterLogEvents","logs:GetLogEvents","logs:GetLogGroupFields","logs:DescribeLogGroups","logs:DescribeLogStreams"];return this.policyResource?iam().Grant.addToPrincipalOrResource({actions,grantee,resourceArns:[logs().CfnLogGroup.arnForLogGroup(this.resource)],resource:this.policyResource}):iam().Grant.addToPrincipal({actions,grantee,resourceArns:[logs().CfnLogGroup.arnForLogGroup(this.resource)]})}}exports.LogGroupGrants=LogGroupGrants;