iam-floyd
Version:
AWS IAM policy statement generator with fluent interface
15 lines (14 loc) • 466 B
TypeScript
import { PolicyStatement } from './policy-statement';
/**
* 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.
*
* @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
*/
constructor(sid?: string);
}