From 073b867f0e257bcb251e2b35529ae02af8fe3326 Mon Sep 17 00:00:00 2001 From: Liwei Wang Date: Tue, 21 Mar 2023 17:08:34 +0000 Subject: [PATCH] Change doc for addAttributeGroup method. Testing done ------------------------------------- * Related items ------------------------------------ * SIM/auto-cut ticket --- .../@aws-cdk/aws-servicecatalogappregistry/lib/application.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-servicecatalogappregistry/lib/application.ts b/packages/@aws-cdk/aws-servicecatalogappregistry/lib/application.ts index 5ddceba8278f8..1e3a4e3036069 100644 --- a/packages/@aws-cdk/aws-servicecatalogappregistry/lib/application.ts +++ b/packages/@aws-cdk/aws-servicecatalogappregistry/lib/application.ts @@ -67,7 +67,7 @@ export interface IApplication extends cdk.IResource { /** * Create an attribute group and associate this application with the created attribute group. * - * @param id construct id of the attribute group construct created + * @param id name of the AttributeGroup construct to be created. * @param attributeGroupProps AppRegistry attribute group props */ addAttributeGroup(id: string, attributeGroupProps: AttributeGroupAssociationProps): IAttributeGroup;