Skip to content

Commit

Permalink
fix aws-custom-resource
Browse files Browse the repository at this point in the history
  • Loading branch information
Elad Ben-Israel committed May 4, 2020
1 parent c7a6815 commit 2b1a4ae
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ export class AwsCustomResource extends cdk.Construct implements iam.IGrantable {
this.customResource = new cdk.CustomResource(this, 'Resource', {
resourceType: props.resourceType || 'Custom::AWS',
serviceToken: provider.functionArn,
pascalCaseProperties: true,
properties: {
create: create && encodeBooleans(create),
update: props.onUpdate && encodeBooleans(props.onUpdate),
Expand Down

0 comments on commit 2b1a4ae

Please sign in to comment.