UNPKG

iam-floyd

Version:

AWS IAM policy statement generator with fluent interface

42 lines (41 loc) 1.65 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; /** * Statement provider for service [uxc](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsserviceformanagingawsconsoleuserexperiencecapabilities..html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class Uxc extends PolicyStatement { servicePrefix: string; /** * Statement provider for service [uxc](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsserviceformanagingawsconsoleuserexperiencecapabilities..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 delete the color associated with the account * * Access Level: Write * * https://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/DeleteAccountColor.html */ toDeleteAccountColor(): this; /** * Grants permission to get the color associated with the account * * Access Level: Read * * https://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/GetAccountColor.html */ toGetAccountColor(): this; /** * Grants permission to sets the color associated with an account * * Access Level: Write * * https://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/PutAccountColor.html */ toPutAccountColor(): this; protected accessLevelList: AccessLevelList; }