UNPKG

cdk-iam-floyd

Version:

AWS IAM policy statement generator with fluent interface for AWS CDK

45 lines (44 loc) 1.69 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; import { aws_iam as iam } from "aws-cdk-lib"; /** * Statement provider for service [resource-explorer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_tageditor.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class ResourceExplorer extends PolicyStatement { servicePrefix: string; /** * Grants permission to retrieve the resource types currently supported by Tag Editor * * Access Level: List * * https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-prereqs.html#rg-permissions-te */ toListResourceTypes(): this; /** * Grants permission to retrieve the identifiers of the resources in the AWS account * * Access Level: List * * https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-prereqs.html#rg-permissions-te */ toListResources(): this; /** * Grants permission to retrieve the tags attached to the specified resource identifiers * * Access Level: Read * * Dependent actions: * - tag:GetResources * * https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-prereqs.html#rg-permissions-te */ toListTags(): this; protected accessLevelList: AccessLevelList; /** * Statement provider for service [resource-explorer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_tageditor.html). * */ constructor(props?: iam.PolicyStatementProps); }