iam-floyd
Version:
AWS IAM policy statement generator with fluent interface
26 lines (25 loc) • 1.12 kB
TypeScript
import { AccessLevelList } from '../../shared/access-level';
import { PolicyStatement } from '../../shared';
/**
* Statement provider for service [wam](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkspacesapplicationmanager.html).
*
* @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
*/
export declare class Wam extends PolicyStatement {
servicePrefix: string;
/**
* Statement provider for service [wam](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkspacesapplicationmanager.html).
*
* @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
*/
constructor(sid?: string);
/**
* Allows the Amazon WAM packaging instance to access your application package catalog.
*
* Access Level: Write
*
* https://docs.aws.amazon.com/wam/latest/adminguide/iam.html
*/
toAuthenticatePackager(): this;
protected accessLevelList: AccessLevelList;
}