UNPKG

iam-floyd

Version:

AWS IAM policy statement generator with fluent interface

34 lines (33 loc) 1.54 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; /** * Statement provider for service [supportrecommendations](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssupportrecommendations.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class Supportrecommendations extends PolicyStatement { servicePrefix: string; /** * Statement provider for service [supportrecommendations](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssupportrecommendations.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 the GetSupportTroubleshootingResponse API which lists troubleshooting responses for users' issues * * Access Level: Read * * https://docs.aws.amazon.com/awssupport/latest/user/security-support-recommendations.html/ */ toGetSupportTroubleshootingResponse(): this; /** * Grants permission to the StartSupportTroubleshooting API which starts troubleshooting for users' issues * * Access Level: Read * * https://docs.aws.amazon.com/awssupport/latest/user/security-support-recommendations.html/ */ toStartSupportTroubleshooting(): this; protected accessLevelList: AccessLevelList; }