From 031867691c0c3dab36f8a6365e6e1bf32e68f288 Mon Sep 17 00:00:00 2001 From: "k.goto" <24818752+go-to-k@users.noreply.github.com> Date: Wed, 6 Sep 2023 21:09:52 +0900 Subject: [PATCH] docs(apprunner): fix typo in AuthenticationConfiguration (#27027) This PR fixes only minor typo (`@defult`) in AuthenticationConfiguration. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts b/packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts index afa6ea319b152..4312405c6d455 100644 --- a/packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts +++ b/packages/@aws-cdk/aws-apprunner-alpha/lib/service.ts @@ -756,7 +756,7 @@ interface AuthenticationConfiguration { * The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a * source repository. It's required for ECR image repositories (but not for ECR Public repositories). * - * @defult - no access role. + * @default - no access role. */ readonly accessRoleArn?: string;