iam-floyd
Version:
AWS IAM policy statement generator with fluent interface
26 lines (25 loc) • 1.13 kB
TypeScript
import { AccessLevelList } from '../../shared/access-level';
import { PolicyStatement } from '../../shared';
/**
* Statement provider for service [inspector-scan](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoninspectorscan.html).
*
* @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
*/
export declare class InspectorScan extends PolicyStatement {
servicePrefix: string;
/**
* Statement provider for service [inspector-scan](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoninspectorscan.html).
*
* @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
*/
constructor(sid?: string);
/**
* Grants permission to scan the customer provided SBOM and return vulnerabilities detected within
*
* Access Level: Read
*
* https://docs.aws.amazon.com/inspector/v2/APIReference/API_ScanSbom.html
*/
toScanSbom(): this;
protected accessLevelList: AccessLevelList;
}