Skip to content

Commit 9d01cfc

Browse files
authored
chore(codepipeline-actions): change cdk.Construct to Construct (#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*
1 parent 2d27d0f commit 9d01cfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/aws-codepipeline-actions/lib/cloudformation/private/singleton-policy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class SingletonPolicy extends Construct implements iam.IGrantable {
3232
private statements: { [key: string]: iam.PolicyStatement } = {};
3333

3434
private constructor(private readonly role: iam.IRole) {
35-
super(role as unknown as cdk.Construct, SingletonPolicy.UUID);
35+
super(role as unknown as Construct, SingletonPolicy.UUID);
3636
this.grantPrincipal = role;
3737
}
3838

0 commit comments

Comments
 (0)