UNPKG

cdk-iam-floyd

Version:

AWS IAM policy statement generator with fluent interface for AWS CDK

42 lines (41 loc) 1.52 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; import { aws_iam as iam } from "aws-cdk-lib"; /** * Statement provider for service [aws-marketplace-image-building-service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmarketplaceimagebuildingservice.html). * * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement */ export declare class AwsMarketplaceImageBuildingService extends PolicyStatement { servicePrefix: string; /** * Describes Image Builds identified by a build Id * * Access Level: Read * * https://docs.aws.amazon.com/marketplace/latest/buyerguide/api-reference.html */ toDescribeBuilds(): this; /** * Lists Image Builds. * * Access Level: Read * * https://docs.aws.amazon.com/marketplace/latest/buyerguide/api-reference.html */ toListBuilds(): this; /** * Starts an Image Build * * Access Level: Write * * https://docs.aws.amazon.com/marketplace/latest/buyerguide/api-reference.html */ toStartBuild(): this; protected accessLevelList: AccessLevelList; /** * Statement provider for service [aws-marketplace-image-building-service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmarketplaceimagebuildingservice.html). * */ constructor(props?: iam.PolicyStatementProps); }