UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

18 lines (17 loc) 608 B
import * as kinesisfirehose from "./kinesisfirehose.generated"; import * as iam from "../../aws-iam"; /** * Collection of grant methods for a IDeliveryStreamRef */ export declare class DeliveryStreamGrants { /** * Creates grants for DeliveryStreamGrants */ static fromDeliveryStream(resource: kinesisfirehose.IDeliveryStreamRef): DeliveryStreamGrants; protected readonly resource: kinesisfirehose.IDeliveryStreamRef; private constructor(); /** * Grant the `grantee` identity permissions to perform `actions`. */ putRecords(grantee: iam.IGrantable): iam.Grant; }