UNPKG

@aws-cdk/cloudformation-diff

Version:

Utilities to diff CDK stacks against CloudFormation templates

12 lines (11 loc) 438 B
export declare class ManagedPolicyAttachment { readonly identityArn: string; readonly managedPolicyArn: string; static parseManagedPolicies(identityArn: string, arns: string | string[]): ManagedPolicyAttachment[]; constructor(identityArn: string, managedPolicyArn: string); equal(other: ManagedPolicyAttachment): boolean; } export interface ManagedPolicyJson { identityArn: string; managedPolicyArn: string; }