Shailja Khurana

Results 95 comments of Shailja Khurana

Hi @JCKortlang , thanks for reaching out. I see the [cloudformation implementation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-ebsoptions.html) and CDK [typescript implementation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_opensearchservice.CfnDomain.EBSOptionsProperty.html#volumesize) specifies both props as Int. This is code level implementation which also declares these...

Hi @mi-laf , thanks for reaching out. Looks like this issue is related to JSII so I am moving this to corresponding repo for further action.

Hi @nishikkr , thanks for reaching out. I downloaded [this yaml file](https://github.com/awslabs/aws-config-rules/blob/master/aws-config-conformance-packs/Operational-Best-Practices-for-CMMC-2.0-Level-2.yaml) and was able to migrate this yaml to my stack in Python on Mac- snippet of stack created...

@nishikkr , I am able to repro this in Python (however it succeeds in Typescript)- ```json NameError: name 'props_access_keys_rotated_param_max_access_key_age' is not defined. Did you mean: 'access_keys_rotated_param_max_access_key_age'? ``` This is related...

Hey @trondhindenes , thanks for reaching out. [this document](BundlingOptions) about custom bundling in python CDK might be able to help explain how custom bundling happens. Please feel free to let...

Hi @sumpfork , thanks for reaching out. This is my analysis - The [tags](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.Tag.html) are implemented using Aspects and the way nested stack would work is , one has to...

I also see that existing documentation covers these - 1. [Tagging single construct](https://docs.aws.amazon.com/cdk/v2/guide/tagging.html#tagging_single) 2. [Tags](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.Tags.html) - Manages AWS tags for all resources within a construct scope. 3. [Tag](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.Tag.html) - The...

@sumpfork , I tried to change the nested stack tags using the node.defaultchild(). ```ts const cfnstack = nestedStack.node.defaultChild as CfnStack; cfnstack.tags.setTag('tag1', 'parentStackTagValueReplaced'); ``` It does not work and the reason...

Hi @ayrawat17 , thanks for reaching out. The issue is reproducible. Sharing the observation - ```ts const cldtrail = new cloudtrail.Trail(this, 'cloudtrail001', { trailName: 'cloudtrail001', isOrganizationTrail: true, }); ``` this...