UNPKG

iam-floyd

Version:

AWS IAM policy statement generator with fluent interface

58 lines (57 loc) 2.25 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; /** * Statement provider for service [iot-device-tester](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotdevicetester.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class IotDeviceTester extends PolicyStatement { servicePrefix: string; /** * Statement provider for service [iot-device-tester](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotdevicetester.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 IoT Device Tester to check if a given set of product, test suite and device tester version are compatible * * Access Level: Read * * https://docs.aws.amazon.com/freertos/latest/userguide/dev-tester-prereqs.html */ toCheckVersion(): this; /** * Grants permission to IoT Device Tester to download compatible test suite versions * * Access Level: Read * * https://docs.aws.amazon.com/freertos/latest/userguide/dev-tester-prereqs.html */ toDownloadTestSuite(): this; /** * Grants permission to IoT Device Tester to get information on latest version of device tester available * * Access Level: Read * * https://docs.aws.amazon.com/freertos/latest/userguide/dev-tester-prereqs.html */ toLatestIdt(): this; /** * Grants permission to IoT Device Tester to send usage metrics on your behalf * * Access Level: Write * * https://docs.aws.amazon.com/freertos/latest/userguide/dev-tester-prereqs.html */ toSendMetrics(): this; /** * Grants permission to IoT Device Tester to get list of supported products and test suite versions * * Access Level: Read * * https://docs.aws.amazon.com/freertos/latest/userguide/dev-tester-prereqs.html */ toSupportedVersion(): this; protected accessLevelList: AccessLevelList; }