UNPKG

cdk-iam-floyd

Version:

AWS IAM policy statement generator with fluent interface for AWS CDK

15 lines (14 loc) 404 B
import { PolicyStatement } from './policy-statement'; import { aws_iam as iam } from "aws-cdk-lib"; /** * Action provider for all services */ export declare class All extends PolicyStatement { /** * Action provider for all services. * * Use this provider to globally allow/deny actions, based on global conditions. * */ constructor(props?: iam.PolicyStatementProps); }