cdk-iam-floyd
Version:
AWS IAM policy statement generator with fluent interface for AWS CDK
58 lines (57 loc) • 1.93 kB
TypeScript
import { AccessLevelList } from '../../shared/access-level';
import { PolicyStatement } from '../../shared';
import { aws_iam as iam } from "aws-cdk-lib";
/**
* Statement provider for service [elemental-support-cases](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalsupportcases.html).
*
* @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
*/
export declare class ElementalSupportCases extends PolicyStatement {
servicePrefix: string;
/**
* Grants permission to verify whether the caller has the permissions to perform support case operations
*
* Access Level: Write
*
* https://docs.aws.amazon.com/elemental-appliances-software
*/
toCheckCasePermission(): this;
/**
* Grants permission to create a support case
*
* Access Level: Write
*
* https://docs.aws.amazon.com/elemental-appliances-software
*/
toCreateCase(): this;
/**
* Grants permission to describe a support case in your account
*
* Access Level: Read
*
* https://docs.aws.amazon.com/elemental-appliances-software
*/
toGetCase(): this;
/**
* Grants permission to list the support cases in your account
*
* Access Level: Read
*
* https://docs.aws.amazon.com/elemental-appliances-software
*/
toGetCases(): this;
/**
* Grants permission to update a support case
*
* Access Level: Write
*
* https://docs.aws.amazon.com/elemental-appliances-software
*/
toUpdateCase(): this;
protected accessLevelList: AccessLevelList;
/**
* Statement provider for service [elemental-support-cases](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalsupportcases.html).
*
*/
constructor(props?: iam.PolicyStatementProps);
}