UNPKG

cdk-iam-floyd

Version:

AWS IAM policy statement generator with fluent interface for AWS CDK

54 lines (53 loc) 1.57 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; import { aws_iam as iam } from "aws-cdk-lib"; /** * Statement provider for service [researchstudio](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonbiodiscovery.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class Researchstudio extends PolicyStatement { servicePrefix: string; /** * Grants permission to assign princiapl * * Access Level: Write */ toAssignPrincipal(): this; /** * Grants permission to create application * * Access Level: Write */ toCreateApplication(): this; /** * Grants permission to delete application * * Access Level: Write */ toDeleteApplication(): this; /** * Grants permission to delete principal * * Access Level: Write */ toDeletePrincipal(): this; /** * Grants permission to get application * * Access Level: Read */ toGetApplication(): this; /** * Grants permission to list applications * * Access Level: List */ toListApplications(): this; protected accessLevelList: AccessLevelList; /** * Statement provider for service [researchstudio](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonbiodiscovery.html). * */ constructor(props?: iam.PolicyStatementProps); }