From d5fea64fa2e6a911e073ee714c387e08f196f503 Mon Sep 17 00:00:00 2001 From: epolon Date: Sun, 1 Mar 2020 16:15:27 +0200 Subject: [PATCH] fix README reference to fromResponsePath --- packages/@aws-cdk/custom-resources/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/custom-resources/README.md b/packages/@aws-cdk/custom-resources/README.md index 0aeac67f773cf..d8ba5bb9205e7 100644 --- a/packages/@aws-cdk/custom-resources/README.md +++ b/packages/@aws-cdk/custom-resources/README.md @@ -381,7 +381,7 @@ const verifyDomainIdentity = new AwsCustomResource(this, 'VerifyDomainIdentity', parameters: { Domain: 'example.com' }, - physicalResourceId: PhysicalResourceId.fromResponsePath('VerificationToken') // Use the token returned by the call as physical id + physicalResourceId: PhysicalResourceId.fromResponse('VerificationToken') // Use the token returned by the call as physical id } });