UNPKG

iam-floyd

Version:

AWS IAM policy statement generator with fluent interface

26 lines (25 loc) 1.15 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; /** * Statement provider for service [codeguru](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodeguru.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class Codeguru extends PolicyStatement { servicePrefix: string; /** * Statement provider for service [codeguru](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodeguru.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 get free trial summary for the CodeGuru service which includes expiration date * * Access Level: Read * * https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_GetCodeGuruFreeTrialSummary.html */ toGetCodeGuruFreeTrialSummary(): this; protected accessLevelList: AccessLevelList; }