UNPKG

cdk-iam-floyd

Version:

AWS IAM policy statement generator with fluent interface for AWS CDK

26 lines (25 loc) 1.06 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; import { aws_iam as iam } from "aws-cdk-lib"; /** * Statement provider for service [mediaimport](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmediaimport.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class Mediaimport extends PolicyStatement { servicePrefix: string; /** * Grants permission to create a database binary snapshot on the customer's aws account * * Access Level: Write * * https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html */ toCreateDatabaseBinarySnapshot(): this; protected accessLevelList: AccessLevelList; /** * Statement provider for service [mediaimport](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmediaimport.html). * */ constructor(props?: iam.PolicyStatementProps); }