Skip to content

Commit

Permalink
chore(codepipeline-actions): change cdk.Construct to Construct (#…
Browse files Browse the repository at this point in the history
…19002)

This fixes a v2 merge issue. A reference to `cdk.Construct` was added, which should have been just `Construct`.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
comcalvi authored Feb 17, 2022
1 parent 2d27d0f commit 9d01cfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class SingletonPolicy extends Construct implements iam.IGrantable {
private statements: { [key: string]: iam.PolicyStatement } = {};

private constructor(private readonly role: iam.IRole) {
super(role as unknown as cdk.Construct, SingletonPolicy.UUID);
super(role as unknown as Construct, SingletonPolicy.UUID);
this.grantPrincipal = role;
}

Expand Down

0 comments on commit 9d01cfc

Please sign in to comment.