konokenj.cdk-api-mcp-server 0.69.0__py3-none-any.whl → 0.70.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2025-present Kenji Kono <konoken@amazon.co.jp>
2
2
  #
3
3
  # SPDX-License-Identifier: MIT
4
- __version__ = "0.69.0"
4
+ __version__ = "0.70.0"
@@ -2353,6 +2353,84 @@ const target = service.loadBalancerTarget({
2353
2353
  target.attachToApplicationTargetGroup(blueTargetGroup);
2354
2354
  ```
2355
2355
 
2356
+ ## Buil-in Linear and Canary Deployments
2357
+
2358
+ Amazon ECS supports progressive deployment strategies that allow you to validate new service revisions before shifting all production traffic. Both strategies require an Application Load Balancer (ALB) with target groups for traffic routing.
2359
+
2360
+ ### Linear Deployment
2361
+
2362
+ Linear deployment strategy shifts production traffic in equal percentage increments with configurable wait times between each step:
2363
+
2364
+ ```ts
2365
+ declare const cluster: ecs.Cluster;
2366
+ declare const taskDefinition: ecs.TaskDefinition;
2367
+ declare const blueTargetGroup: elbv2.ApplicationTargetGroup;
2368
+ declare const greenTargetGroup: elbv2.ApplicationTargetGroup;
2369
+ declare const prodListenerRule: elbv2.ApplicationListenerRule;
2370
+
2371
+ const service = new ecs.FargateService(this, 'Service', {
2372
+ cluster,
2373
+ taskDefinition,
2374
+ deploymentStrategy: ecs.DeploymentStrategy.LINEAR,
2375
+ linearConfiguration: {
2376
+ stepPercent: 10.0,
2377
+ stepBakeTime: Duration.minutes(5),
2378
+ },
2379
+ });
2380
+
2381
+ const target = service.loadBalancerTarget({
2382
+ containerName: 'web',
2383
+ containerPort: 80,
2384
+ alternateTarget: new ecs.AlternateTarget('AlternateTarget', {
2385
+ alternateTargetGroup: greenTargetGroup,
2386
+ productionListener: ecs.ListenerRuleConfiguration.applicationListenerRule(prodListenerRule),
2387
+ }),
2388
+ });
2389
+
2390
+ target.attachToApplicationTargetGroup(blueTargetGroup);
2391
+ ```
2392
+
2393
+ Valid values:
2394
+ - `stepPercent`: 3.0 to 100.0 (multiples of 0.1). Default: 10.0
2395
+ - `stepBakeTime`: 0 to 1440 minutes (24 hours). Default: 6 minutes
2396
+
2397
+ ### Canary Deployment
2398
+
2399
+ Canary deployment strategy shifts a fixed percentage of traffic to the new service revision for testing, then shifts the remaining traffic after a bake period:
2400
+
2401
+ ```ts
2402
+ declare const cluster: ecs.Cluster;
2403
+ declare const taskDefinition: ecs.TaskDefinition;
2404
+ declare const blueTargetGroup: elbv2.ApplicationTargetGroup;
2405
+ declare const greenTargetGroup: elbv2.ApplicationTargetGroup;
2406
+ declare const prodListenerRule: elbv2.ApplicationListenerRule;
2407
+
2408
+ const service = new ecs.FargateService(this, 'Service', {
2409
+ cluster,
2410
+ taskDefinition,
2411
+ deploymentStrategy: ecs.DeploymentStrategy.CANARY,
2412
+ canaryConfiguration: {
2413
+ stepPercent: 5.0,
2414
+ stepBakeTime: Duration.minutes(10),
2415
+ },
2416
+ });
2417
+
2418
+ const target = service.loadBalancerTarget({
2419
+ containerName: 'web',
2420
+ containerPort: 80,
2421
+ alternateTarget: new ecs.AlternateTarget('AlternateTarget', {
2422
+ alternateTargetGroup: greenTargetGroup,
2423
+ productionListener: ecs.ListenerRuleConfiguration.applicationListenerRule(prodListenerRule),
2424
+ }),
2425
+ });
2426
+
2427
+ target.attachToApplicationTargetGroup(blueTargetGroup);
2428
+ ```
2429
+
2430
+ Valid values:
2431
+ - `stepPercent`: 0.1 to 100.0 (multiples of 0.1). Default: 5.0
2432
+ - `stepBakeTime`: 0 to 1440 minutes (24 hours). Default: 10 minutes
2433
+
2356
2434
  ## Daemon Scheduling Strategy
2357
2435
  You can specify whether service use Daemon scheduling strategy by specifying `daemon` option in Service constructs. See [differences between Daemon and Replica scheduling strategy](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html)
2358
2436
 
@@ -0,0 +1,117 @@
1
+ import * as ec2 from 'aws-cdk-lib/aws-ec2';
2
+ import * as elbv2 from 'aws-cdk-lib/aws-elasticloadbalancingv2';
3
+ import * as cdk from 'aws-cdk-lib';
4
+ import * as ecs from 'aws-cdk-lib/aws-ecs';
5
+ import * as integ from '@aws-cdk/integ-tests-alpha';
6
+
7
+ const app = new cdk.App();
8
+ const stack = new cdk.Stack(app, 'aws-ecs-canary-deployment');
9
+
10
+ const vpc = new ec2.Vpc(stack, 'Vpc', { maxAzs: 2, restrictDefaultSecurityGroup: false });
11
+ const cluster = new ecs.Cluster(stack, 'FargateCluster', { vpc });
12
+
13
+ const blueTargetGroup = new elbv2.ApplicationTargetGroup(stack, 'BlueTG', {
14
+ vpc: cluster.vpc,
15
+ port: 80,
16
+ protocol: elbv2.ApplicationProtocol.HTTP,
17
+ targetType: elbv2.TargetType.IP,
18
+ healthCheck: {
19
+ path: '/',
20
+ healthyHttpCodes: '200',
21
+ },
22
+ });
23
+
24
+ const greenTargetGroup = new elbv2.ApplicationTargetGroup(stack, 'GreenTG', {
25
+ vpc: cluster.vpc,
26
+ port: 80,
27
+ protocol: elbv2.ApplicationProtocol.HTTP,
28
+ targetType: elbv2.TargetType.IP,
29
+ healthCheck: {
30
+ path: '/',
31
+ healthyHttpCodes: '200',
32
+ },
33
+ });
34
+
35
+ const lbSecurityGroup = new ec2.SecurityGroup(stack, 'LBSecurityGroup', {
36
+ vpc: cluster.vpc,
37
+ allowAllOutbound: true,
38
+ });
39
+
40
+ const ecsSecurityGroup = new ec2.SecurityGroup(stack, 'ECSSecurityGroup', {
41
+ vpc: cluster.vpc,
42
+ allowAllOutbound: true,
43
+ });
44
+ ecsSecurityGroup.addIngressRule(lbSecurityGroup, ec2.Port.tcp(80));
45
+
46
+ const alb = new elbv2.ApplicationLoadBalancer(stack, 'ALB', {
47
+ vpc: cluster.vpc,
48
+ internetFacing: true,
49
+ securityGroup: lbSecurityGroup,
50
+ idleTimeout: cdk.Duration.seconds(60),
51
+ });
52
+
53
+ const listener = alb.addListener('ALBListener', {
54
+ port: 80,
55
+ defaultAction: elbv2.ListenerAction.fixedResponse(404),
56
+ open: false,
57
+ });
58
+
59
+ const prodListenerRule = new elbv2.ApplicationListenerRule(stack, 'ALBProductionListenerRule', {
60
+ listener: listener,
61
+ priority: 1,
62
+ conditions: [
63
+ elbv2.ListenerCondition.pathPatterns(['/*']),
64
+ ],
65
+ action: elbv2.ListenerAction.weightedForward([
66
+ {
67
+ targetGroup: blueTargetGroup,
68
+ weight: 100,
69
+ },
70
+ {
71
+ targetGroup: greenTargetGroup,
72
+ weight: 0,
73
+ },
74
+ ]),
75
+ });
76
+
77
+ const taskDefinition = new ecs.FargateTaskDefinition(stack, 'TaskDef', {
78
+ memoryLimitMiB: 512,
79
+ cpu: 256,
80
+ });
81
+
82
+ taskDefinition.addContainer('container', {
83
+ containerName: 'nginx',
84
+ image: ecs.ContainerImage.fromRegistry('public.ecr.aws/nginx/nginx:latest'),
85
+ portMappings: [{
86
+ name: 'api',
87
+ containerPort: 80,
88
+ appProtocol: ecs.AppProtocol.http,
89
+ }],
90
+ });
91
+
92
+ const service = new ecs.FargateService(stack, 'Service', {
93
+ cluster,
94
+ taskDefinition,
95
+ securityGroups: [ecsSecurityGroup],
96
+ deploymentStrategy: ecs.DeploymentStrategy.CANARY,
97
+ canaryConfiguration: {
98
+ stepPercent: 5.0,
99
+ stepBakeTime: cdk.Duration.minutes(10),
100
+ },
101
+ });
102
+
103
+ const target = service.loadBalancerTarget({
104
+ containerName: 'nginx',
105
+ containerPort: 80,
106
+ protocol: ecs.Protocol.TCP,
107
+ alternateTarget: new ecs.AlternateTarget('LBAlternateOptions', {
108
+ alternateTargetGroup: greenTargetGroup,
109
+ productionListener: ecs.ListenerRuleConfiguration.applicationListenerRule(prodListenerRule),
110
+ }),
111
+ });
112
+
113
+ target.attachToApplicationTargetGroup(blueTargetGroup);
114
+
115
+ new integ.IntegTest(app, 'aws-ecs-canary', {
116
+ testCases: [stack],
117
+ });
@@ -0,0 +1,117 @@
1
+ import * as ec2 from 'aws-cdk-lib/aws-ec2';
2
+ import * as elbv2 from 'aws-cdk-lib/aws-elasticloadbalancingv2';
3
+ import * as cdk from 'aws-cdk-lib';
4
+ import * as ecs from 'aws-cdk-lib/aws-ecs';
5
+ import * as integ from '@aws-cdk/integ-tests-alpha';
6
+
7
+ const app = new cdk.App();
8
+ const stack = new cdk.Stack(app, 'aws-ecs-linear-deployment');
9
+
10
+ const vpc = new ec2.Vpc(stack, 'Vpc', { maxAzs: 2, restrictDefaultSecurityGroup: false });
11
+ const cluster = new ecs.Cluster(stack, 'FargateCluster', { vpc });
12
+
13
+ const blueTargetGroup = new elbv2.ApplicationTargetGroup(stack, 'BlueTG', {
14
+ vpc: cluster.vpc,
15
+ port: 80,
16
+ protocol: elbv2.ApplicationProtocol.HTTP,
17
+ targetType: elbv2.TargetType.IP,
18
+ healthCheck: {
19
+ path: '/',
20
+ healthyHttpCodes: '200',
21
+ },
22
+ });
23
+
24
+ const greenTargetGroup = new elbv2.ApplicationTargetGroup(stack, 'GreenTG', {
25
+ vpc: cluster.vpc,
26
+ port: 80,
27
+ protocol: elbv2.ApplicationProtocol.HTTP,
28
+ targetType: elbv2.TargetType.IP,
29
+ healthCheck: {
30
+ path: '/',
31
+ healthyHttpCodes: '200',
32
+ },
33
+ });
34
+
35
+ const lbSecurityGroup = new ec2.SecurityGroup(stack, 'LBSecurityGroup', {
36
+ vpc: cluster.vpc,
37
+ allowAllOutbound: true,
38
+ });
39
+
40
+ const ecsSecurityGroup = new ec2.SecurityGroup(stack, 'ECSSecurityGroup', {
41
+ vpc: cluster.vpc,
42
+ allowAllOutbound: true,
43
+ });
44
+ ecsSecurityGroup.addIngressRule(lbSecurityGroup, ec2.Port.tcp(80));
45
+
46
+ const alb = new elbv2.ApplicationLoadBalancer(stack, 'ALB', {
47
+ vpc: cluster.vpc,
48
+ internetFacing: true,
49
+ securityGroup: lbSecurityGroup,
50
+ idleTimeout: cdk.Duration.seconds(60),
51
+ });
52
+
53
+ const listener = alb.addListener('ALBListener', {
54
+ port: 80,
55
+ defaultAction: elbv2.ListenerAction.fixedResponse(404),
56
+ open: false,
57
+ });
58
+
59
+ const prodListenerRule = new elbv2.ApplicationListenerRule(stack, 'ALBProductionListenerRule', {
60
+ listener: listener,
61
+ priority: 1,
62
+ conditions: [
63
+ elbv2.ListenerCondition.pathPatterns(['/*']),
64
+ ],
65
+ action: elbv2.ListenerAction.weightedForward([
66
+ {
67
+ targetGroup: blueTargetGroup,
68
+ weight: 100,
69
+ },
70
+ {
71
+ targetGroup: greenTargetGroup,
72
+ weight: 0,
73
+ },
74
+ ]),
75
+ });
76
+
77
+ const taskDefinition = new ecs.FargateTaskDefinition(stack, 'TaskDef', {
78
+ memoryLimitMiB: 512,
79
+ cpu: 256,
80
+ });
81
+
82
+ taskDefinition.addContainer('container', {
83
+ containerName: 'nginx',
84
+ image: ecs.ContainerImage.fromRegistry('public.ecr.aws/nginx/nginx:latest'),
85
+ portMappings: [{
86
+ name: 'api',
87
+ containerPort: 80,
88
+ appProtocol: ecs.AppProtocol.http,
89
+ }],
90
+ });
91
+
92
+ const service = new ecs.FargateService(stack, 'Service', {
93
+ cluster,
94
+ taskDefinition,
95
+ securityGroups: [ecsSecurityGroup],
96
+ deploymentStrategy: ecs.DeploymentStrategy.LINEAR,
97
+ linearConfiguration: {
98
+ stepPercent: 10.0,
99
+ stepBakeTime: cdk.Duration.minutes(5),
100
+ },
101
+ });
102
+
103
+ const target = service.loadBalancerTarget({
104
+ containerName: 'nginx',
105
+ containerPort: 80,
106
+ protocol: ecs.Protocol.TCP,
107
+ alternateTarget: new ecs.AlternateTarget('LBAlternateOptions', {
108
+ alternateTargetGroup: greenTargetGroup,
109
+ productionListener: ecs.ListenerRuleConfiguration.applicationListenerRule(prodListenerRule),
110
+ }),
111
+ });
112
+
113
+ target.attachToApplicationTargetGroup(blueTargetGroup);
114
+
115
+ new integ.IntegTest(app, 'aws-ecs-linear', {
116
+ testCases: [stack],
117
+ });
@@ -462,6 +462,19 @@ new logs.LogGroup(this, 'LogGroupLambda', {
462
462
  });
463
463
  ```
464
464
 
465
+ ## Configure Deletion Protection
466
+
467
+ Indicates whether deletion protection is enabled for this log group. When enabled, deletion protection blocks all deletion operations until it is explicitly disabled.
468
+
469
+ For more information, see [Protecting log groups from deletion](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/protecting-log-groups-from-deletion.html).
470
+
471
+ ```ts
472
+ new logs.LogGroup(this, 'LogGroup', {
473
+ deletionProtectionEnabled: true,
474
+ });
475
+ ```
476
+
477
+
465
478
  ## Field Index Policies
466
479
 
467
480
  Creates or updates a field index policy for the specified log group. You can use field index policies to create field indexes on fields found in log events in the log group. Creating field indexes lowers the costs for CloudWatch Logs Insights queries that reference those field indexes, because these queries attempt to skip the processing of log events that are known to not match the indexed field. Good fields to index are fields that you often need to query for and fields that have high cardinality of values.
@@ -0,0 +1,14 @@
1
+ import { App, Stack } from 'aws-cdk-lib';
2
+ import { IntegTest } from '@aws-cdk/integ-tests-alpha';
3
+ import { LogGroup } from 'aws-cdk-lib/aws-logs';
4
+
5
+ const app = new App();
6
+ const stack = new Stack(app, 'aws-cdk-loggroup-grantreads-integ');
7
+
8
+ new LogGroup(stack, 'LogGroup', {
9
+ deletionProtectionEnabled: true,
10
+ });
11
+
12
+ new IntegTest(app, 'loggroup-grantreads', {
13
+ testCases: [stack],
14
+ });
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: konokenj.cdk-api-mcp-server
3
- Version: 0.69.0
3
+ Version: 0.70.0
4
4
  Summary: An MCP server provides AWS CDK API Reference
5
5
  Project-URL: Documentation, https://github.com/konokenj/cdk-api-mcp-server#readme
6
6
  Project-URL: Issues, https://github.com/konokenj/cdk-api-mcp-server/issues
@@ -26,7 +26,7 @@ Description-Content-Type: text/markdown
26
26
  [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/konokenj.cdk-api-mcp-server.svg)](https://pypi.org/project/konokenj.cdk-api-mcp-server)
27
27
 
28
28
  <!-- DEP-VERSIONS-START -->
29
- [![aws-cdk](https://img.shields.io/badge/aws%20cdk-v2.234.1-blue.svg)](https://github.com/konokenj/cdk-api-mcp-server/blob/main/current-versions/aws-cdk.txt)
29
+ [![aws-cdk](https://img.shields.io/badge/aws%20cdk-v2.235.0-blue.svg)](https://github.com/konokenj/cdk-api-mcp-server/blob/main/current-versions/aws-cdk.txt)
30
30
  <!-- DEP-VERSIONS-END -->
31
31
 
32
32
  ---
@@ -1,4 +1,4 @@
1
- cdk_api_mcp_server/__about__.py,sha256=1AdyPVvBDr8uMLAbq5RBTIbB9eTGSvNMg8Ofpr_fdpo,129
1
+ cdk_api_mcp_server/__about__.py,sha256=H-AYNZf-Fm2vnGGoJRTt2qlGssreZUzu_DT_V-7TayI,129
2
2
  cdk_api_mcp_server/__init__.py,sha256=yJA6yIEhJviC-qNlB-nC6UR1JblQci_d84i-viHZkc0,187
3
3
  cdk_api_mcp_server/models.py,sha256=cMS1Hi29M41YjuBxqqrzNrNvyG3MgnUBb1SqYpMCJ30,692
4
4
  cdk_api_mcp_server/resources.py,sha256=R7LVwn29I4BJzU5XAwKbX8j6uy-3ZxcB1b0HzZ_Z2PI,6689
@@ -602,7 +602,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ
602
602
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ.assets-tarball.ts,sha256=pSbNMWSorKT7lUTXxnzkxpcRumKPYWUmcbqRSwwWOgI,937
603
603
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ.nested-stacks-docker.ts,sha256=4hDobse34oIG2r0mjbYXzsEXXLEqv077jUh3pjoYmcc,981
604
604
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/CONTRIBUTING.md,sha256=TlNwpeYemLdYq4jdo24v7nwDIj3RmZ7u2j_LCQiQR74,2634
605
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md,sha256=eNxPUEw6sENWR3HFnLgNAJ6w0xOKZNOE1tkcPavVMUA,84559
605
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md,sha256=RQVRi-ONxIf185i1ijECm2hQ16WI40EtF56uhE-_LII,87240
606
606
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.add-docker-label.ts,sha256=avHktilCBVPuVelquVaY2ylRkSLraWn7vUIIIFPsbyI,1375
607
607
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.add-environment-variable.ts,sha256=sIdwJl7LYh5wlv_EDLPSGCavC2OF6W8IBwZ_hMOnCfw,1143
608
608
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.app-mesh-proxy-config.ts,sha256=qhtztZPppP98wdEneOEDI3p0P608q0DtS_Nv-6grLHM,1596
@@ -610,6 +610,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.availa
610
610
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.awslogs-driver.ts,sha256=js3ZnGoPKDVQl5NhZqF-acS5BTNeRkKWBjHUYVJkV0Q,1322
611
611
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.blue-green-deployment-strategy.ts,sha256=Rh8t4oub7rWxHATyTpwIbSjQwRAR8R8bpUXgAckK_mE,4222
612
612
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.bottlerocket.ts,sha256=pio8vLSNlFeokyocKepVUq1ZJXhhrC7iH2ZVJiJxatg,728
613
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.canary-deployment-strategy.ts,sha256=M05Nst_ZXx4KQQMcoI3lo5DIAMTd3LU87v4taHxJplI,3175
613
614
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.capacity-provider-managed-draining.ts,sha256=K_eRJ9thQNqqo1TrA_dOzgieYkuJnhGEbZQcR0hyBzo,1907
614
615
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.capacity-provider.ts,sha256=i4ybZBXakmn9EOHwGKidhqPDOZlkWQcRxVOt4QoOA_k,1514
615
616
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.capacity-providers.ts,sha256=1JfeuquUWRLNw-FThuQac5sePyc_j4Gjx5iNjV9cbZM,892
@@ -644,6 +645,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.gravit
644
645
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.graviton.ts,sha256=-L0L2_uXEpuszWK0FNPNErOVzYj6jLz_GN__t3-IUJo,719
645
646
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.lb-awsvpc-nw.ts,sha256=VGnwETVmq2owapn3crFeJ187sqNYjb1afkBcNZaRNzs,1813
646
647
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.lb-bridge-nw.ts,sha256=0nlq9ShB7EeFK-6OE6-id-5PCfhGaDf5snnzYNUnHCQ,1822
648
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.linear-deployment-strategy.ts,sha256=CjogKM6GaQu-5pqM-D2jTAd4FCJ_xS6MRTpqX24ma28,3175
647
649
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.managedinstances-capacity-provider-default-roles.ts,sha256=CuvR4P7pA9IYH_7SPDMMwXOeMyWlCkaaL4JBuuRLf0Y,2824
648
650
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.managedinstances-capacity-provider.ts,sha256=v15lSJEI71zG-MPupT3UeWM0bgvI-TWjwaX7dDvLNO0,3631
649
651
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.managedinstances-no-default-capacity-provider.ts,sha256=2Fc943-G8gfENka_oSUmasxiA-qrTuget9URJhnSFa8,3330
@@ -991,13 +993,14 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/in
991
993
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/integ.modules.ts,sha256=etsjdg80JJb_gag1tC0I2DgOcARVOCrRZsQYr46sQv0,2323
992
994
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/integ.nodejs.build.images.ts,sha256=6gF-Mb9LgF8E5PpGwkBmaWqepqEqzbTuSpnnqKZ1_sU,1721
993
995
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/integ.specifycode.ts,sha256=JdlBTKpPf5xlQlfTYlXUMbMVwGD0a-heEYPx0ZNFO9U,1938
994
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/README.md,sha256=_JHu8-Ff-ib19WShFFPnEBy-LDPsRq1aiixJEg37fIk,24587
996
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/README.md,sha256=bj8HqK318cRTrSlYpLqQxWEnQxGlzuj-nbs-0AvK9Sg,25043
995
997
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.expose-metric.ts,sha256=nHHNSRyq2eGVZkZe1_UWwdr7vWnBDqdMWoiArzJleHI,1256
996
998
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.log-group-metrics.ts,sha256=3t37idu5s4B6dxhZWD_7pNeue7eJCume6MdEgtc1TTs,707
997
999
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.log-group.ts,sha256=ffml_7GAfXAFSr_qqzrBZ08eG_ZhLS1T-8d-hdsxNf4,1312
998
1000
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.log-resource-policy-any-principal.ts,sha256=koq7lWWdsPm9OJjkE6EWIiKZaEEuUhvQckp-7yIaqEo,829
999
1001
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.log-retention-retries.ts,sha256=b3uLWuEZZeOOkwno6y3yBFVT6AbcX9z1VITcyupKnfQ,1336
1000
1002
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.log-retention.ts,sha256=KPWCfAezyRQ9KZR88gbnsIb9TUrjjUYLDMDjFc54XvU,900
1003
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.loggroup-deletionprotection.ts,sha256=Dm6vqjQDHA6P6cCWFsxpv3Dm8ML58FGrX34BdnFWrfI,383
1001
1004
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.loggroup-grantread.ts,sha256=3Gjcq80bm6qeqjTmq_rbVVYvbWDTLkGWFclh3_XLY2Q,491
1002
1005
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.loggroup-transformer.ts,sha256=2DmUNPzqW5FOnYRckyW74XKJwbubhc2gdIT2YhUoi9E,1271
1003
1006
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.loggroupclass.ts,sha256=ZiJznICcvepDPf97FzReAD5l9FTnWtL6RsNw1cQABgg,2001
@@ -1486,8 +1489,8 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/pipelines/integ.pipe
1486
1489
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/region-info/README.md,sha256=vewWkV3ds9o9iyyYaJBNTkaKJ2XA6K2yF17tAxUnujg,2718
1487
1490
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/triggers/README.md,sha256=hYIx7DbG_7p4LYLUfxDwgIQjw9UNdz1GLrqDe8_Dbko,4132
1488
1491
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/triggers/integ.triggers.ts,sha256=LfeVru_CggiFXKPVa8vwt6Uv43SV3oAioDGmd8PyMHc,2859
1489
- konokenj_cdk_api_mcp_server-0.69.0.dist-info/METADATA,sha256=UfU33RGhkSEmPfxWJfxGZz-_kG-D4jd9PJ1ItHiHQck,2646
1490
- konokenj_cdk_api_mcp_server-0.69.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
1491
- konokenj_cdk_api_mcp_server-0.69.0.dist-info/entry_points.txt,sha256=bVDhMdyCC1WNMPOMbmB82jvWII2CIrwTZDygdCf0cYQ,79
1492
- konokenj_cdk_api_mcp_server-0.69.0.dist-info/licenses/LICENSE.txt,sha256=5OIAASeg1HM22mVZ1enz9bgZ7TlsGfWXnj02P9OgFyk,1098
1493
- konokenj_cdk_api_mcp_server-0.69.0.dist-info/RECORD,,
1492
+ konokenj_cdk_api_mcp_server-0.70.0.dist-info/METADATA,sha256=jH-lWPiCse-acxprkStAlMhgor_2hEmFzIlF64tKsrA,2646
1493
+ konokenj_cdk_api_mcp_server-0.70.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
1494
+ konokenj_cdk_api_mcp_server-0.70.0.dist-info/entry_points.txt,sha256=bVDhMdyCC1WNMPOMbmB82jvWII2CIrwTZDygdCf0cYQ,79
1495
+ konokenj_cdk_api_mcp_server-0.70.0.dist-info/licenses/LICENSE.txt,sha256=5OIAASeg1HM22mVZ1enz9bgZ7TlsGfWXnj02P9OgFyk,1098
1496
+ konokenj_cdk_api_mcp_server-0.70.0.dist-info/RECORD,,