import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; /** * 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; /** * 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 */ constructor(sid?: 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; }