From d90dffa50a0ba6ef16e969154d93e639f444b58f Mon Sep 17 00:00:00 2001 From: "k.goto" <24818752+go-to-k@users.noreply.github.com> Date: Tue, 13 Jun 2023 18:02:31 +0900 Subject: [PATCH] docs(ecs): fix a property doc in ExecuteCommandLogConfiguration (#25856) As mentioned in https://github.com/aws/aws-cdk/issues/25855, a doc of the s3EncryptionEnabled in the ExecuteCommandLogConfiguration interface is wrong. Closes #25855 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-ecs/lib/cluster.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-ecs/lib/cluster.ts b/packages/aws-cdk-lib/aws-ecs/lib/cluster.ts index 3e27e61af8538..7cde8a908119b 100644 --- a/packages/aws-cdk-lib/aws-ecs/lib/cluster.ts +++ b/packages/aws-cdk-lib/aws-ecs/lib/cluster.ts @@ -1108,7 +1108,7 @@ export interface ExecuteCommandLogConfiguration { readonly s3Bucket?: s3.IBucket, /** - * Whether or not to enable encryption on the CloudWatch logs. + * Whether or not to enable encryption on the S3 bucket. * * @default - encryption will be disabled. */