Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(s: Construct, i: string) {
super(s, i);
this.grantPrincipal = new iam.UnknownPrincipal({ resource: this });
}
}
constructor(s: Construct, i: string) {
super(s, i);
this.projectArn = Stack.of(this).formatArn({
service: 'codebuild',
resource: 'project',
resourceName: projectName,
});
this.grantPrincipal = new iam.UnknownPrincipal({ resource: this });
this.projectName = projectName;
}
}