cdk-iam-floyd
Version:
AWS IAM policy statement generator with fluent interface for AWS CDK
21 lines (20 loc) • 529 B
TypeScript
import { PolicyStatementWithResources } from './4-resources';
/**
* Adds "effect" functionality to the Policy Statement
*/
export declare class PolicyStatementWithEffect extends PolicyStatementWithResources {
/**
* Injects effect into the statement.
*
* Only relevant for the main package. In CDK mode this only calls super.
*/
toJSON(): any;
/**
* Allow the actions in this statement
*/
allow(): this;
/**
* Deny the actions in this statement
*/
deny(): this;
}