UNPKG

iam-floyd

Version:

AWS IAM policy statement generator with fluent interface

42 lines (41 loc) 1.58 kB
import { AccessLevelList } from '../../shared/access-level'; import { PolicyStatement } from '../../shared'; /** * 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; /** * 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 */ constructor(sid?: 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; }