import * as cdk from '@aws-cdk/core'; export declare namespace CfnRole { /** * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html */ interface PolicyProperty { /** * `CfnRole.PolicyProperty.PolicyDocument` * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html#cfn-iam-policies-policydocument */ readonly policyDocument: object | cdk.Token; /** * `CfnRole.PolicyProperty.PolicyName` * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html#cfn-iam-policies-policyname */ readonly policyName: string; } }