konokenj.cdk-api-mcp-server 0.55.0__py3-none-any.whl → 0.56.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.

Potentially problematic release.


This version of konokenj.cdk-api-mcp-server might be problematic. Click here for more details.

@@ -1487,7 +1487,7 @@ Use the `grantProfileUsage` method to grant appropriate permissions to resources
1487
1487
  // Create an application inference profile
1488
1488
  const profile = new bedrock.ApplicationInferenceProfile(this, 'MyProfile', {
1489
1489
  applicationInferenceProfileName: 'my-profile',
1490
- modelSource: bedrock.BedrockFoundationModel.ANTHROPIC_CLAUDE_3_5_SONNET_V1_0,
1490
+ modelSource: bedrock.BedrockFoundationModel.ANTHROPIC_CLAUDE_SONNET_4_5_V1_0,
1491
1491
  });
1492
1492
 
1493
1493
  // Create a Lambda function
@@ -1503,7 +1503,7 @@ profile.grantProfileUsage(lambdaFunction);
1503
1503
  // Use a system defined inference profile
1504
1504
  const crossRegionProfile = bedrock.CrossRegionInferenceProfile.fromConfig({
1505
1505
  geoRegion: bedrock.CrossRegionInferenceProfileRegion.US,
1506
- model: bedrock.BedrockFoundationModel.ANTHROPIC_CLAUDE_3_5_SONNET_V1_0,
1506
+ model: bedrock.BedrockFoundationModel.ANTHROPIC_CLAUDE_SONNET_4_5_V1_0,
1507
1507
  });
1508
1508
 
1509
1509
  // Grant permissions to use the cross-region inference profile
@@ -102,6 +102,7 @@ phases:
102
102
  Most developer-friendly approach using objects:
103
103
 
104
104
  ```ts
105
+
105
106
  const component = new imagebuilder.Component(this, 'JsonComponent', {
106
107
  platform: imagebuilder.Platform.LINUX,
107
108
  data: imagebuilder.ComponentData.fromJsonObject({
@@ -115,19 +116,58 @@ const component = new imagebuilder.Component(this, 'JsonComponent', {
115
116
  action: imagebuilder.ComponentAction.CREATE_FILE,
116
117
  inputs: {
117
118
  path: '/etc/myapp/config.json',
118
- content: '{"env": "production"}',
119
- },
120
- },
121
- ],
122
- },
123
- ],
124
- }),
119
+ content: '{"env": "production"}'
120
+ }
121
+ }
122
+ ]
123
+ }
124
+ ]
125
+ })
125
126
  });
126
127
  ```
127
128
 
128
129
  ##### Structured Component Document
129
130
 
130
- For type-safe, CDK-native definitions with enhanced properties like `timeout` and `onFailure`:
131
+ For type-safe, CDK-native definitions with enhanced properties like `timeout` and `onFailure`.
132
+
133
+ ###### Defining a component step
134
+
135
+ You can define steps in the component which will be executed in order when the component is applied:
136
+
137
+ ```ts
138
+ const step: imagebuilder.ComponentDocumentStep = {
139
+ name: 'configure-app',
140
+ action: imagebuilder.ComponentAction.CREATE_FILE,
141
+ inputs: imagebuilder.ComponentStepInputs.fromObject({
142
+ path: '/etc/myapp/config.json',
143
+ content: '{"env": "production"}'
144
+ })
145
+ };
146
+ ```
147
+
148
+ ###### Defining a component phase
149
+
150
+ Phases group steps together, which run in sequence when building, validating or testing in the component:
151
+
152
+ ```ts
153
+ const phase: imagebuilder.ComponentDocumentPhase = {
154
+ name: imagebuilder.ComponentPhaseName.BUILD,
155
+ steps: [
156
+ {
157
+ name: 'configure-app',
158
+ action: imagebuilder.ComponentAction.CREATE_FILE,
159
+ inputs: imagebuilder.ComponentStepInputs.fromObject({
160
+ path: '/etc/myapp/config.json',
161
+ content: '{"env": "production"}'
162
+ })
163
+ }
164
+ ]
165
+ };
166
+ ```
167
+
168
+ ###### Defining a component
169
+
170
+ The component data defines all steps across the provided phases to execute during the build:
131
171
 
132
172
  ```ts
133
173
  const component = new imagebuilder.Component(this, 'StructuredComponent', {
@@ -143,14 +183,14 @@ const component = new imagebuilder.Component(this, 'StructuredComponent', {
143
183
  action: imagebuilder.ComponentAction.EXECUTE_BASH,
144
184
  timeout: Duration.minutes(10),
145
185
  onFailure: imagebuilder.ComponentOnFailure.CONTINUE,
146
- inputs: {
147
- commands: ['./install-script.sh'],
148
- },
149
- },
150
- ],
151
- },
152
- ],
153
- }),
186
+ inputs: imagebuilder.ComponentStepInputs.fromObject({
187
+ commands: ['./install-script.sh']
188
+ })
189
+ }
190
+ ]
191
+ }
192
+ ]
193
+ })
154
194
  });
155
195
  ```
156
196
 
@@ -296,3 +336,146 @@ const infrastructureConfiguration = new imagebuilder.InfrastructureConfiguration
296
336
  }
297
337
  });
298
338
  ```
339
+
340
+ ### Distribution Configuration
341
+
342
+ Distribution configuration defines how and where your built images are distributed after successful creation. For AMIs,
343
+ this includes target AWS Regions, KMS encryption keys, account sharing permissions, License Manager associations, and
344
+ launch template configurations. For container images, it specifies the target Amazon ECR repositories across regions.
345
+ A distribution configuration can be associated with an image or an image pipeline to define these distribution settings
346
+ for image builds.
347
+
348
+ #### AMI Distributions
349
+
350
+ AMI distributions can be defined to copy and modify AMIs in different accounts and regions, and apply them to launch
351
+ templates, SSM parameters, etc.:
352
+
353
+ ```ts
354
+ const distributionConfiguration = new imagebuilder.DistributionConfiguration(this, 'DistributionConfiguration', {
355
+ distributionConfigurationName: 'test-distribution-configuration',
356
+ description: 'A Distribution Configuration',
357
+ amiDistributions: [
358
+ {
359
+ // Distribute AMI to us-east-2 and publish the AMI ID to an SSM parameter
360
+ region: 'us-east-2',
361
+ ssmParameters: [
362
+ {
363
+ parameter: ssm.StringParameter.fromStringParameterAttributes(this, 'CrossRegionParameter', {
364
+ parameterName: '/imagebuilder/ami',
365
+ forceDynamicReference: true
366
+ })
367
+ }
368
+ ]
369
+ }
370
+ ]
371
+ });
372
+
373
+ // For AMI-based image builds - add an AMI distribution in the current region
374
+ distributionConfiguration.addAmiDistributions({
375
+ amiName: 'imagebuilder-{{ imagebuilder:buildDate }}',
376
+ amiDescription: 'Build AMI',
377
+ amiKmsKey: kms.Key.fromLookup(this, 'ComponentKey', { aliasName: 'alias/distribution-encryption-key' }),
378
+ // Copy the AMI to different accounts
379
+ amiTargetAccountIds: ['123456789012', '098765432109'],
380
+ // Add launch permissions on the AMI
381
+ amiLaunchPermission: {
382
+ organizationArns: [
383
+ this.formatArn({ region: '', service: 'organizations', resource: 'organization', resourceName: 'o-1234567abc' })
384
+ ],
385
+ organizationalUnitArns: [
386
+ this.formatArn({
387
+ region: '',
388
+ service: 'organizations',
389
+ resource: 'ou',
390
+ resourceName: 'o-1234567abc/ou-a123-b4567890'
391
+ })
392
+ ],
393
+ isPublicUserGroup: true,
394
+ accountIds: ['234567890123']
395
+ },
396
+ // Attach tags to the AMI
397
+ amiTags: {
398
+ Environment: 'production',
399
+ Version: '{{ imagebuilder:buildVersion }}'
400
+ },
401
+ // Optional - publish the distributed AMI ID to an SSM parameter
402
+ ssmParameters: [
403
+ {
404
+ parameter: ssm.StringParameter.fromStringParameterAttributes(this, 'Parameter', {
405
+ parameterName: '/imagebuilder/ami',
406
+ forceDynamicReference: true
407
+ })
408
+ },
409
+ {
410
+ amiAccount: '098765432109',
411
+ dataType: ssm.ParameterDataType.TEXT,
412
+ parameter: ssm.StringParameter.fromStringParameterAttributes(this, 'CrossAccountParameter', {
413
+ parameterName: 'imagebuilder-prod-ami',
414
+ forceDynamicReference: true
415
+ })
416
+ }
417
+ ],
418
+ // Optional - create a new launch template version with the distributed AMI ID
419
+ launchTemplates: [
420
+ {
421
+ launchTemplate: ec2.LaunchTemplate.fromLaunchTemplateAttributes(this, 'LaunchTemplate', {
422
+ launchTemplateId: 'lt-1234'
423
+ }),
424
+ setDefaultVersion: true
425
+ },
426
+ {
427
+ accountId: '123456789012',
428
+ launchTemplate: ec2.LaunchTemplate.fromLaunchTemplateAttributes(this, 'CrossAccountLaunchTemplate', {
429
+ launchTemplateId: 'lt-5678'
430
+ }),
431
+ setDefaultVersion: true
432
+ }
433
+ ],
434
+ // Optional - enable Fast Launch on an imported launch template
435
+ fastLaunchConfigurations: [
436
+ {
437
+ enabled: true,
438
+ launchTemplate: ec2.LaunchTemplate.fromLaunchTemplateAttributes(this, 'FastLaunchLT', {
439
+ launchTemplateName: 'fast-launch-lt'
440
+ }),
441
+ maxParallelLaunches: 10,
442
+ targetSnapshotCount: 2
443
+ }
444
+ ],
445
+ // Optional - license configurations to apply to the AMI
446
+ licenseConfigurationArns: [
447
+ 'arn:aws:license-manager:us-west-2:123456789012:license-configuration:lic-abcdefghijklmnopqrstuvwxyz'
448
+ ]
449
+ });
450
+ ```
451
+
452
+ #### Container Distributions
453
+
454
+ ##### Container repositories
455
+
456
+ Container distributions can be configured to distribute to ECR repositories:
457
+
458
+ ```ts
459
+ const ecrRepository = ecr.Repository.fromRepositoryName(this, 'ECRRepository', 'my-repo');
460
+ const imageBuilderRepository = imagebuilder.Repository.fromEcr(ecrRepository);
461
+ ```
462
+
463
+ ##### Defining a container distribution
464
+
465
+ You can configure the container repositories as well as the description and tags applied to the distributed container
466
+ images:
467
+
468
+ ```ts
469
+ const ecrRepository = ecr.Repository.fromRepositoryName(this, 'ECRRepository', 'my-repo');
470
+ const containerRepository = imagebuilder.Repository.fromEcr(ecrRepository);
471
+ const containerDistributionConfiguration = new imagebuilder.DistributionConfiguration(
472
+ this,
473
+ 'ContainerDistributionConfiguration'
474
+ );
475
+
476
+ containerDistributionConfiguration.addContainerDistributions({
477
+ containerRepository,
478
+ containerDescription: 'Test container image',
479
+ containerTags: ['latest', 'latest-1.0']
480
+ });
481
+ ```
@@ -125,15 +125,46 @@ const bucket = new s3.CfnBucket(scope, "Bucket");
125
125
  Mixins.of(bucket).apply(new EnableVersioning());
126
126
  ```
127
127
 
128
- ### Generic Mixins
128
+ ### L1 Property Mixins
129
129
 
130
- **CfnPropertiesMixin**: Applies arbitrary CloudFormation properties
130
+ For every CloudFormation resource, CDK Mixins automatically generates type-safe property mixins. These allow you to apply L1 properties with full TypeScript support:
131
131
 
132
132
  ```typescript
133
- const bucket = new s3.CfnBucket(scope, "Bucket");
134
- Mixins.of(bucket).apply(new CfnPropertiesMixin({
135
- customProperty: { enabled: true }
136
- }));
133
+ import '@aws-cdk/mixins-preview/with';
134
+ import { CfnBucketPropsMixin } from '@aws-cdk/mixins-preview/aws-s3/mixins';
135
+
136
+ const bucket = new s3.Bucket(scope, "Bucket")
137
+ .with(new CfnBucketPropsMixin({
138
+ versioningConfiguration: { status: "Enabled" },
139
+ publicAccessBlockConfiguration: {
140
+ blockPublicAcls: true,
141
+ blockPublicPolicy: true
142
+ }
143
+ }));
144
+ ```
145
+
146
+ Property mixins support two merge strategies:
147
+
148
+ ```typescript
149
+ // MERGE (default): Deep merges properties with existing values
150
+ Mixins.of(bucket).apply(new CfnBucketPropsMixin(
151
+ { versioningConfiguration: { status: "Enabled" } },
152
+ { strategy: PropertyMergeStrategy.MERGE }
153
+ ));
154
+
155
+ // OVERWRITE: Replaces existing property values
156
+ Mixins.of(bucket).apply(new CfnBucketPropsMixin(
157
+ { versioningConfiguration: { status: "Enabled" } },
158
+ { strategy: PropertyMergeStrategy.OVERWRITE }
159
+ ));
160
+ ```
161
+
162
+ Property mixins are available for all AWS services:
163
+
164
+ ```typescript
165
+ import { CfnLogGroupMixin } from '@aws-cdk/mixins-preview/aws-logs/mixins';
166
+ import { CfnFunctionMixin } from '@aws-cdk/mixins-preview/aws-lambda/mixins';
167
+ import { CfnTableMixin } from '@aws-cdk/mixins-preview/aws-dynamodb/mixins';
137
168
  ```
138
169
 
139
170
  ## Error Handling
@@ -149,30 +180,3 @@ Mixins.of(scope)
149
180
  Mixins.of(scope)
150
181
  .mustApply(new EncryptionAtRest()); // Throws if no constructs support the mixin
151
182
  ```
152
-
153
- ## API Reference
154
-
155
- ### Core Interfaces
156
-
157
- * `IMixin` - Interface that all mixins must implement
158
- * `Mixins` - Main entry point for applying mixins
159
- * `ConstructSelector` - Selects constructs from a tree based on criteria
160
- * `MixinApplicator` - Applies mixins to selected constructs
161
-
162
- ### Mixins
163
-
164
- * `EncryptionAtRest` - Cross-service encryption mixin
165
- * `AutoDeleteObjects` - S3 auto-delete objects mixin
166
- * `EnableVersioning` - S3 versioning mixin
167
- * `CfnPropertiesMixin` - Generic CloudFormation properties mixin
168
-
169
- ### Selectors
170
-
171
- * `ConstructSelector.all()` - Select all constructs
172
- * `ConstructSelector.cfnResource()` - Select CfnResource constructs
173
- * `ConstructSelector.resourcesOfType()` - Select by type
174
- * `ConstructSelector.byId()` - Select by ID pattern
175
-
176
- ## License
177
-
178
- This project is licensed under the Apache-2.0 License.
@@ -17,7 +17,7 @@ const webSocketTableName = 'WebSocketConnections';
17
17
 
18
18
  const connectFunction = new lambda.Function(stack, 'Connect Function', {
19
19
  functionName: 'process_connect_requests',
20
- runtime: lambda.Runtime.NODEJS_14_X,
20
+ runtime: lambda.Runtime.NODEJS_22_X,
21
21
  handler: 'index.handler',
22
22
  code: lambda.Code.fromAsset(path.join(__dirname, 'lambdas', 'connect')),
23
23
  timeout: cdk.Duration.seconds(5),
@@ -31,7 +31,7 @@ const disconnectFunction = new lambda.Function(
31
31
  'Disconnect Function',
32
32
  {
33
33
  functionName: 'process_disconnect_requests',
34
- runtime: lambda.Runtime.NODEJS_14_X,
34
+ runtime: lambda.Runtime.NODEJS_22_X,
35
35
  handler: 'index.handler',
36
36
  code: lambda.Code.fromAsset(
37
37
  path.join(__dirname, 'lambdas', 'disconnect'),
@@ -1907,7 +1907,7 @@ You can configure [tag propagation on volume creation](https://docs.aws.amazon.c
1907
1907
 
1908
1908
  #### Throughput on GP3 Volumes
1909
1909
 
1910
- You can specify the `throughput` of a GP3 volume from 125 (default) to 1000.
1910
+ You can specify the `throughput` of a GP3 volume from 125 (default) to 2000.
1911
1911
 
1912
1912
  ```ts
1913
1913
  new ec2.Volume(this, 'Volume', {
@@ -248,7 +248,7 @@ repository.addToResourcePolicy(new iam.PolicyStatement({
248
248
  }));
249
249
  ```
250
250
 
251
- ## import existing repository
251
+ ## Import existing repository
252
252
 
253
253
  You can import an existing repository into your CDK app using the `Repository.fromRepositoryArn`, `Repository.fromRepositoryName` or `Repository.fromLookup` method.
254
254
  These methods take the ARN or the name of the repository and returns an `IRepository` object.
@@ -1661,9 +1661,9 @@ new ecs.Ec2Service(this, 'EC2Service', {
1661
1661
 
1662
1662
  ### Managed Instances Capacity Providers
1663
1663
 
1664
- Managed Instances Capacity Providers allow you to use AWS-managed EC2 instances for your ECS tasks while providing more control over instance selection than standard Fargate. AWS handles the instance lifecycle, patching, and maintenance while you can specify detailed instance requirements.
1664
+ Managed Instances Capacity Providers allow you to use AWS-managed EC2 instances for your ECS tasks while providing more control over instance selection than standard Fargate. AWS handles the instance lifecycle, patching, and maintenance while you can specify detailed instance requirements. You can define detailed instance requirements to control which types of instances are used for your workloads.
1665
1665
 
1666
- To create a Managed Instances Capacity Provider, you need to specify the required EC2 instance profile, and networking configuration. You can also define detailed instance requirements to control which types of instances are used for your workloads.
1666
+ See [ECS documentation for Managed Instances Capacity Provider](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-instances-capacity-providers-concept.html) for more documentation.
1667
1667
 
1668
1668
  ```ts
1669
1669
  declare const vpc: ec2.Vpc;
@@ -1693,14 +1693,19 @@ miCapacityProvider.connections.allowFrom(ec2.Peer.ipv4(vpc.vpcCidrBlock), ec2.Po
1693
1693
  // Add the capacity provider to the cluster
1694
1694
  cluster.addManagedInstancesCapacityProvider(miCapacityProvider);
1695
1695
 
1696
- const taskDefinition = new ecs.Ec2TaskDefinition(this, 'TaskDef');
1696
+ const taskDefinition = new ecs.TaskDefinition(this, 'TaskDef', {
1697
+ memoryMiB: '512',
1698
+ cpu: '256',
1699
+ networkMode: ecs.NetworkMode.AWS_VPC,
1700
+ compatibility: ecs.Compatibility.MANAGED_INSTANCES,
1701
+ });
1697
1702
 
1698
1703
  taskDefinition.addContainer('web', {
1699
1704
  image: ecs.ContainerImage.fromRegistry('amazon/amazon-ecs-sample'),
1700
1705
  memoryReservationMiB: 256,
1701
1706
  });
1702
1707
 
1703
- new ecs.Ec2Service(this, 'EC2Service', {
1708
+ new ecs.FargateService(this, 'FargateService', {
1704
1709
  cluster,
1705
1710
  taskDefinition,
1706
1711
  minHealthyPercent: 100,
@@ -1761,6 +1766,41 @@ const miCapacityProvider = new ecs.ManagedInstancesCapacityProvider(this, 'MICap
1761
1766
  onDemandMaxPricePercentageOverLowestPrice: 10,
1762
1767
  },
1763
1768
  });
1769
+
1770
+ ```
1771
+ #### Note: Service Replacement When Migrating from LaunchType to CapacityProviderStrategy
1772
+
1773
+ **Understanding the Limitation**
1774
+
1775
+ The ECS [CreateService API](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html#ECS-CreateService-request-launchType) does not allow specifying both `launchType` and `capacityProviderStrategies` simultaneously. When you specify `capacityProviderStrategies`, the CDK uses those capacity providers instead of a launch type. This is a limitation of the ECS API and CloudFormation, not a CDK bug.
1776
+
1777
+ **Impact on Updates**
1778
+
1779
+ Because `launchType` is immutable during updates, switching from `launchType` to `capacityProviderStrategies` requires CloudFormation to replace the service. This means your existing service will be deleted and recreated with the new configuration. This behavior is expected and reflects the underlying API constraints.
1780
+
1781
+ **Workaround**
1782
+
1783
+ While we work on a long-term solution, you can use the following [escape hatch](https://docs.aws.amazon.com/cdk/v2/guide/cfn-layer.html) to preserve your service during the migration:
1784
+
1785
+ ```ts
1786
+ declare const cluster: ecs.Cluster;
1787
+ declare const taskDefinition: ecs.TaskDefinition;
1788
+ declare const miCapacityProvider: ecs.ManagedInstancesCapacityProvider;
1789
+
1790
+ const service = new ecs.FargateService(this, 'Service', {
1791
+ cluster,
1792
+ taskDefinition,
1793
+ capacityProviderStrategies: [
1794
+ {
1795
+ capacityProvider: miCapacityProvider.capacityProviderName,
1796
+ weight: 1,
1797
+ },
1798
+ ],
1799
+ });
1800
+
1801
+ // Escape hatch: Force launchType at the CloudFormation level to prevent service replacement
1802
+ const cfnService = service.node.defaultChild as ecs.CfnService;
1803
+ cfnService.launchType = 'FARGATE'; // or 'FARGATE_SPOT' depending on your capacity provider
1764
1804
  ```
1765
1805
 
1766
1806
  ### Cluster Default Provider Strategy
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: konokenj.cdk-api-mcp-server
3
- Version: 0.55.0
3
+ Version: 0.56.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.224.0-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.225.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=rA_SHXJOQTCGZdHPj9gp46MhwCXP96bj4dKeLEuguBc,129
1
+ cdk_api_mcp_server/__about__.py,sha256=R_YsrVLF69pwgRex6mzoD5jYjRaOaFs_AeecPOzixZ8,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
@@ -9,8 +9,8 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/app-staging-synthesizer
9
9
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-amplify-alpha/README.md,sha256=OIdszebPa0EqMIaHhqWgH6A64AcwQioIKC-NHDyZKrI,12636
10
10
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-applicationsignals-alpha/README.md,sha256=6nqc-WbHB1iFE3vXDr6hyQs8tYS6wwnWutXePY4EF4w,10873
11
11
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-apprunner-alpha/README.md,sha256=Jtm3RbnP4jQy8BYXwHvaRbMKizUjr4SqvimVMYhu6WQ,11982
12
- cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-bedrock-agentcore-alpha/README.md,sha256=M0QhroHDCU8PC2XPNa7PncJtVZYgyhjpBnk47uTc_PM,50954
13
- cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-bedrock-alpha/README.md,sha256=o4IpchOHFzGdZdeX9WPIfFyHAs98uLKIkfSlBOgygB0,65269
12
+ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-bedrock-agentcore-alpha/README.md,sha256=R3FnqFoZFvBqVnBQvjV6ygfKW2yFHtk7QG8ECIls7d0,87387
13
+ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-bedrock-alpha/README.md,sha256=ZFThRraeK0rx1CF2foaEDzKsWxL1Qb9yqpCFM8eKvIo,65269
14
14
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-cloud9-alpha/README.md,sha256=0N8kldvHAKsNQHKtsj8PaQywiDUVrd6rEwVNQV0equY,7718
15
15
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-codestar-alpha/README.md,sha256=J-c-thqWwZFQT3Exjr_AY95BBgTA14Wb9aJ32gmEizQ,1509
16
16
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-custom-resource-sdk-adapter/README.md,sha256=FepYs6-FkeqX8jOohrPByOvzecIOBjd1c1AegNpRYNc,6310
@@ -20,7 +20,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-eks-v2-alpha/README
20
20
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-elasticache-alpha/README.md,sha256=5rwHuZ0rekBgrFzF1ig9rAxqufypWy8XN8-7y3De0dA,15152
21
21
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-gamelift-alpha/README.md,sha256=pZqlGXpIekT05CmRYo99QPI-7S1iGtKoNESGryLQFxQ,28324
22
22
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-glue-alpha/README.md,sha256=BCr7YEJ6Ht3oYR21NMCH3t1N738QjQ9Sh_dL_DUhECQ,32235
23
- cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-imagebuilder-alpha/README.md,sha256=RjhHAlOg1RUErPo2wkaI29D_kqz1YRasa8d9bJXzkgU,10750
23
+ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-imagebuilder-alpha/README.md,sha256=V5LRy4Q8-nUQ9WOgoWugd0ehSMEnI6EsiM-RkIauDCY,16819
24
24
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-iot-actions-alpha/README.md,sha256=R6vkGxu-JjfB1IfGVquiD6Gcn4RQQpgbGo36njBdJe4,11947
25
25
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-iot-alpha/README.md,sha256=18MkQScFBUO_qZnfYj9wfsdY_vRvvEyar2OT_QbO_N4,6909
26
26
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-iotevents-actions-alpha/README.md,sha256=0Al2K5gHcEce_cH07YM1GuFFrJ0mrr85ZWGVrj2cs9s,4477
@@ -46,7 +46,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/cfnspec/README.md,sha25
46
46
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/custom-resource-handlers/README.md,sha256=QctOoyGt6AqVWeFhRwpkCSxHZ1XFWj_nCKlkJHDFock,965
47
47
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/example-construct-library/README.md,sha256=vnVXyvtN9ICph68sw2y6gkdD_gmas0PiUa9TkwNckWQ,4501
48
48
  cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/integ-tests-alpha/README.md,sha256=VifKLrR404_yLVT0E3ai8f3R5K0h22VNwQplpSUSZqc,17489
49
- cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/mixins-preview/README.md,sha256=9m_qHS9WuTACB2_CN1hfV9AFmUb2aTp1QB2vzbs6VMI,5784
49
+ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/mixins-preview/README.md,sha256=lMBvwtXXEMYw43hun0BoXbcCgxhEN9YnEr66e47y9u8,6072
50
50
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/README.md/README.md,sha256=fDaQqPonfLmfQpukU4aAJcjQI5xHI40D3Li0I056Q7s,76468
51
51
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/assertions/MIGRATING.md,sha256=SYGX8QNB1Pm_rVYDBp4QRWkqwnxOb3CHzeFglUy_53k,3347
52
52
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/assertions/README.md,sha256=3yo3D05n5explTIgnuF-vkk01MTYeAYe7_3rcsD2baE,18299
@@ -112,7 +112,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-int
112
112
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.alb.ts,sha256=M37eb1eaG_p-me9AwxJ5Ug1nsBdOtqMloYNW0bELDak,1816
113
113
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.aws.ts,sha256=z-Kjet7OZOc3pR9ReqDEvVFjqdYTgS3ZJprEgt2y9l8,2444
114
114
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.http-proxy.ts,sha256=RbFxD1auiyVyYM9DscPm9xzhDsYPMQPeQTKcgmxAZ0o,1326
115
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.lambda-connect-disconnect-trigger.ts,sha256=wkIoNf1gYDEfV0vyb1wtch5O10949AB2OTskd8ZiL8w,2533
115
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.lambda-connect-disconnect-trigger.ts,sha256=oC__vtPWhU0EgRbtoixIondliCWhybviK35eQ4HIwZA,2533
116
116
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.lambda-permission-consolidation.ts,sha256=ZDRoNQzKQaIU5TZc2CkTKbBdZoDoBqDbNMRqO9pstN8,1669
117
117
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.lambda-proxy.ts,sha256=5HK_boRp3y71H8e-Jxxx2sXxszO0GvgQBl-MY4hnNxo,977
118
118
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-apigatewayv2-integrations/integ.lambda.ts,sha256=69e35cKLnZPl5iccDDqctFquTwRI3nJABtpXT4swWUg,3002
@@ -511,7 +511,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-dynamodb/integ.t
511
511
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-dynamodb/integ.table-v2-mrsc.ts,sha256=C0yWtgzvoaxu9ZEv-7mJ6IEa3K6HIOZyOTWIEAv0Rbk,1054
512
512
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-dynamodb/integ.table-v2-replica.ts,sha256=ZmN5tCVGuefUKdewkwcMC_vd1t8mYj0xowKTaAFq3P4,1613
513
513
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-dynamodb/integ.table-with-customized-role.ts,sha256=CDb1V4J2dg5-JCkFHBtF8wmMOoLaQ-6RDpZT9HnnTBg,2048
514
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/README.md,sha256=h5FWcLHqabtUHxXs5hDbl88ylYuY9Mc66yWoO5EQSLU,103123
514
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/README.md,sha256=1e2akJO6l0RjYAvdTtOS7A7Qll70rqJOVp4ibJEEkcw,103123
515
515
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.bastion-host-arm-support.ts,sha256=zgJ4WxeOAsMmxDW_kgxCUw9-i-hGFeBRX3Xd0-EMuFI,786
516
516
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.bastion-host-disable-al2023-feature-flag.ts,sha256=9gX9xZZuubyUZxCAXqctMSymojJoh893yTgqD-Dfo-k,954
517
517
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.bastion-host-userdatacausesreplacement.ts,sha256=5Vv0q_dk3vtXkam1V9tvu6HcoIv-cUK9pwIHSZvX0ro,1377
@@ -583,7 +583,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc.ts
583
583
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpn-pre-shared-key-token.ts,sha256=qq1fI-FAM-Ift98pBOYj32e9wg4Y8bMX1wE5m-LnsAs,785
584
584
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpn-two-tunnels.ts,sha256=x3VEiiHHzKIZ3DSK7jTSG-exsmtOP5ZCVexXmZJj_lg,897
585
585
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpn.ts,sha256=4DFWnV2DFrhak5ZD1OB-i-9bp011puad-GGhH7KqWbY,722
586
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr/README.md,sha256=mI86KzVXFHO05xrVuiM41XFqmo9hFxKjatIweC3jy8M,11096
586
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr/README.md,sha256=Ixmgg8gLTYwp6HGMA3jriy2nPZtUqgqfi_kNCfIktU4,11096
587
587
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr/integ.basic.ts,sha256=AxYAzcj5EVjBk2E5rhP_eoKDyvGB8zajk-f86y-ah5g,1558
588
588
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr/integ.grant.ts,sha256=6iXr2VBNEWzDzSCUfcPb-uBGa4bXTiCh563kCstjpMc,741
589
589
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr/integ.imagescan.ts,sha256=MfLBVQc3qTDx5LDS15EqUdqtJrK64g5i7GEoFLsRMCA,547
@@ -595,7 +595,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ
595
595
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ.assets-tarball.ts,sha256=pSbNMWSorKT7lUTXxnzkxpcRumKPYWUmcbqRSwwWOgI,937
596
596
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ.nested-stacks-docker.ts,sha256=4hDobse34oIG2r0mjbYXzsEXXLEqv077jUh3pjoYmcc,981
597
597
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/CONTRIBUTING.md,sha256=TlNwpeYemLdYq4jdo24v7nwDIj3RmZ7u2j_LCQiQR74,2634
598
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md,sha256=rd4dQ1t5V_4fAavUF-Ferl9CW1cWEOGogYm0fxdnvQE,79516
598
+ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md,sha256=MW6Jt5xcpNrx1kO5T3cCfS_ItUIWDHoyNro5drF-V9c,81451
599
599
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.add-docker-label.ts,sha256=avHktilCBVPuVelquVaY2ylRkSLraWn7vUIIIFPsbyI,1375
600
600
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.add-environment-variable.ts,sha256=sIdwJl7LYh5wlv_EDLPSGCavC2OF6W8IBwZ_hMOnCfw,1143
601
601
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.app-mesh-proxy-config.ts,sha256=vWr45An7W7lgW9Ws_yPFhapf9DXyJP-D0fhTNg5fZC0,1717
@@ -1459,8 +1459,8 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/pipelines/integ.pipe
1459
1459
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/region-info/README.md,sha256=vewWkV3ds9o9iyyYaJBNTkaKJ2XA6K2yF17tAxUnujg,2718
1460
1460
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/triggers/README.md,sha256=hYIx7DbG_7p4LYLUfxDwgIQjw9UNdz1GLrqDe8_Dbko,4132
1461
1461
  cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/triggers/integ.triggers.ts,sha256=4OHplMoBOgHGkktAzoU-TuNmJQS5wGAUvBfj5bGSe_Y,2807
1462
- konokenj_cdk_api_mcp_server-0.55.0.dist-info/METADATA,sha256=-P57FweXWtkqL6onQZrvxY1bjsou2Z_f_ACxvqFeIXk,2646
1463
- konokenj_cdk_api_mcp_server-0.55.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1464
- konokenj_cdk_api_mcp_server-0.55.0.dist-info/entry_points.txt,sha256=bVDhMdyCC1WNMPOMbmB82jvWII2CIrwTZDygdCf0cYQ,79
1465
- konokenj_cdk_api_mcp_server-0.55.0.dist-info/licenses/LICENSE.txt,sha256=5OIAASeg1HM22mVZ1enz9bgZ7TlsGfWXnj02P9OgFyk,1098
1466
- konokenj_cdk_api_mcp_server-0.55.0.dist-info/RECORD,,
1462
+ konokenj_cdk_api_mcp_server-0.56.0.dist-info/METADATA,sha256=j7bMS9QOlxQWaUMJUso-qcFJZtvS2kjqshswrI0HR5o,2646
1463
+ konokenj_cdk_api_mcp_server-0.56.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1464
+ konokenj_cdk_api_mcp_server-0.56.0.dist-info/entry_points.txt,sha256=bVDhMdyCC1WNMPOMbmB82jvWII2CIrwTZDygdCf0cYQ,79
1465
+ konokenj_cdk_api_mcp_server-0.56.0.dist-info/licenses/LICENSE.txt,sha256=5OIAASeg1HM22mVZ1enz9bgZ7TlsGfWXnj02P9OgFyk,1098
1466
+ konokenj_cdk_api_mcp_server-0.56.0.dist-info/RECORD,,