konokenj.cdk-api-mcp-server 0.66.0__py3-none-any.whl → 0.67.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.
- cdk_api_mcp_server/__about__.py +1 -1
- cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-msk-alpha/README.md +1 -1
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-elastic-beanstalk-deploy.ts +2 -2
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-endpoint-eusc.ts +42 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md +75 -13
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.managedinstances-capacity-provider-default-roles.ts +93 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/README.md +1 -1
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/README.md +4 -3
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/README.md +1 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.option-group.ts +40 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-environment-target.ts +2 -1
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-hostedzoneid.ts +2 -1
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-token-endpoint.ts +2 -1
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/README.md +47 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.ec2-run-task-capacity-provider.ts +145 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.fargate-run-task-capacity-provider.ts +125 -0
- cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/cx-api/FEATURE_FLAGS.md +2 -2
- {konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/METADATA +2 -2
- {konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/RECORD +22 -17
- {konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/WHEEL +0 -0
- {konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/entry_points.txt +0 -0
- {konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/licenses/LICENSE.txt +0 -0
cdk_api_mcp_server/__about__.py
CHANGED
|
@@ -239,7 +239,7 @@ For more information, see [Amazon MSK Express Brokers](https://docs.aws.amazon.c
|
|
|
239
239
|
|
|
240
240
|
**Note:** When using Express Brokers, the following constraints apply:
|
|
241
241
|
|
|
242
|
-
- Apache Kafka version must be 3.6.x or 3.
|
|
242
|
+
- Apache Kafka version must be 3.6.x, 3.8.x, or 3.9.x
|
|
243
243
|
- You must specify the `instanceType`
|
|
244
244
|
- The VPC must have at least 3 subnets (across 3 AZs)
|
|
245
245
|
- `ebsStorageInfo` is not supported
|
|
@@ -9,6 +9,7 @@ import { App, Fn, RemovalPolicy, ResourceEnvironment, Stack, UnscopedValidationE
|
|
|
9
9
|
import * as integ from '@aws-cdk/integ-tests-alpha';
|
|
10
10
|
import * as cpactions from 'aws-cdk-lib/aws-codepipeline-actions';
|
|
11
11
|
import { Node } from 'constructs';
|
|
12
|
+
import { SOLUTION_STACK_NAME } from '../../utils/aws-elasticbeanstalk';
|
|
12
13
|
|
|
13
14
|
/**
|
|
14
15
|
* To validate that the deployment actually succeeds, perform the following actions:
|
|
@@ -93,8 +94,7 @@ const beanstalkApp = new elasticbeanstalk.CfnApplication(stack, 'beastalk-app',
|
|
|
93
94
|
const beanstalkEnv = new elasticbeanstalk.CfnEnvironment(stack, 'beanstlk-env', {
|
|
94
95
|
applicationName: beanstalkApp.applicationName!,
|
|
95
96
|
environmentName: 'codepipeline-test-env',
|
|
96
|
-
|
|
97
|
-
solutionStackName: '64bit Amazon Linux 2023 v6.6.2 running Node.js 20',
|
|
97
|
+
solutionStackName: SOLUTION_STACK_NAME.NODEJS_20,
|
|
98
98
|
optionSettings: [
|
|
99
99
|
{
|
|
100
100
|
namespace: 'aws:autoscaling:launchconfiguration',
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-endpoint-eusc.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as cdk from 'aws-cdk-lib';
|
|
2
|
+
import * as ec2 from 'aws-cdk-lib/aws-ec2';
|
|
3
|
+
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
|
|
4
|
+
import { EC2_RESTRICT_DEFAULT_SECURITY_GROUP } from 'aws-cdk-lib/cx-api';
|
|
5
|
+
|
|
6
|
+
class EuscVpcEndpointStack extends cdk.Stack {
|
|
7
|
+
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) {
|
|
8
|
+
super(scope, id, props);
|
|
9
|
+
this.node.setContext(EC2_RESTRICT_DEFAULT_SECURITY_GROUP, false);
|
|
10
|
+
|
|
11
|
+
const vpc = new ec2.Vpc(this, 'EuscVpc');
|
|
12
|
+
|
|
13
|
+
// Test VPC endpoints for eusc-de-east-1 region services
|
|
14
|
+
vpc.addInterfaceEndpoint('EcrDkrEndpoint', {
|
|
15
|
+
service: ec2.InterfaceVpcEndpointAwsService.ECR_DOCKER,
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
vpc.addInterfaceEndpoint('EcrApiEndpoint', {
|
|
19
|
+
service: ec2.InterfaceVpcEndpointAwsService.ECR,
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
vpc.addInterfaceEndpoint('ApiGatewayEndpoint', {
|
|
23
|
+
service: ec2.InterfaceVpcEndpointAwsService.APIGATEWAY,
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
vpc.addInterfaceEndpoint('SecurityHubEndpoint', {
|
|
27
|
+
service: ec2.InterfaceVpcEndpointAwsService.SECURITYHUB,
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const app = new cdk.App();
|
|
33
|
+
|
|
34
|
+
const testCase = new EuscVpcEndpointStack(app, 'aws-cdk-ec2-vpc-endpoint-eusc', {
|
|
35
|
+
env: { region: 'eusc-de-east-1' },
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
new IntegTest(app, 'vpc-endpoint-eusc', {
|
|
39
|
+
testCases: [testCase],
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
app.synth();
|
|
@@ -1665,26 +1665,21 @@ Managed Instances Capacity Providers allow you to use AWS-managed EC2 instances
|
|
|
1665
1665
|
|
|
1666
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
|
+
#### IAM Roles Setup
|
|
1669
|
+
Managed instances require an infrastructure and an EC2 instance profile. You can either provide your own infrastructure role and/or instance profile, or let the construct create them automatically.
|
|
1670
|
+
|
|
1671
|
+
Option 1: Let CDK create the role and instance profile automatically
|
|
1668
1672
|
```ts
|
|
1669
1673
|
declare const vpc: ec2.Vpc;
|
|
1670
|
-
declare const infrastructureRole: iam.Role;
|
|
1671
|
-
declare const instanceProfile: iam.InstanceProfile;
|
|
1672
1674
|
|
|
1673
1675
|
const cluster = new ecs.Cluster(this, 'Cluster', { vpc });
|
|
1674
1676
|
|
|
1675
|
-
// Create a Managed Instances Capacity Provider
|
|
1676
1677
|
const miCapacityProvider = new ecs.ManagedInstancesCapacityProvider(this, 'MICapacityProvider', {
|
|
1677
|
-
infrastructureRole,
|
|
1678
|
-
ec2InstanceProfile: instanceProfile,
|
|
1679
1678
|
subnets: vpc.privateSubnets,
|
|
1680
|
-
securityGroups: [new ec2.SecurityGroup(this, 'MISecurityGroup', { vpc })],
|
|
1681
1679
|
instanceRequirements: {
|
|
1682
1680
|
vCpuCountMin: 1,
|
|
1683
1681
|
memoryMin: Size.gibibytes(2),
|
|
1684
|
-
cpuManufacturers: [ec2.CpuManufacturer.INTEL],
|
|
1685
|
-
acceleratorManufacturers: [ec2.AcceleratorManufacturer.NVIDIA],
|
|
1686
1682
|
},
|
|
1687
|
-
propagateTags: ecs.PropagateManagedInstancesTags.CAPACITY_PROVIDER,
|
|
1688
1683
|
});
|
|
1689
1684
|
|
|
1690
1685
|
// Optionally configure security group rules using IConnectable interface
|
|
@@ -1718,16 +1713,83 @@ new ecs.FargateService(this, 'FargateService', {
|
|
|
1718
1713
|
});
|
|
1719
1714
|
```
|
|
1720
1715
|
|
|
1716
|
+
Option 2: If you don't want to use the `AmazonECSInfrastructureRolePolicyForManagedInstances` managed policy for the ECS infrastructure role, you can create a custom infrastructure role with the required permissions. See [documentation](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/infrastructure_IAM_role.html) for what permissions are needed for the ECS infrastructure role.
|
|
1717
|
+
|
|
1718
|
+
You can also choose not to use the automatically created ec2InstanceProfile. See [ECS documentation](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-instances-instance-profile.html) for what permissions are required for the profile's role.
|
|
1719
|
+
|
|
1720
|
+
```ts
|
|
1721
|
+
declare const vpc: ec2.Vpc;
|
|
1722
|
+
|
|
1723
|
+
const cluster = new ecs.Cluster(this, 'Cluster', { vpc });
|
|
1724
|
+
|
|
1725
|
+
// Add your custom policies to the role.
|
|
1726
|
+
const customInstanceRole = new iam.Role(this, 'CustomInstanceRole', {
|
|
1727
|
+
assumedBy: new iam.ServicePrincipal('ec2.amazonaws.com'),
|
|
1728
|
+
});
|
|
1729
|
+
|
|
1730
|
+
const customInstanceProfile = new iam.InstanceProfile(this, 'CustomInstanceProfile', {
|
|
1731
|
+
role: customInstanceRole,
|
|
1732
|
+
});
|
|
1733
|
+
|
|
1734
|
+
// Add your custom policies to the role.
|
|
1735
|
+
const customInfrastructureRole = new iam.Role(this, 'CustomInfrastructureRole', {
|
|
1736
|
+
assumedBy: new iam.ServicePrincipal('ecs.amazonaws.com'),
|
|
1737
|
+
});
|
|
1738
|
+
|
|
1739
|
+
// Add PassRole permission to allow ECS to pass the instance role to EC2.
|
|
1740
|
+
customInfrastructureRole.addToPolicy(new iam.PolicyStatement({
|
|
1741
|
+
effect: iam.Effect.ALLOW,
|
|
1742
|
+
actions: ['iam:PassRole'],
|
|
1743
|
+
resources: [customInstanceRole.roleArn],
|
|
1744
|
+
conditions: {
|
|
1745
|
+
StringEquals: {
|
|
1746
|
+
'iam:PassedToService': 'ec2.amazonaws.com',
|
|
1747
|
+
},
|
|
1748
|
+
},
|
|
1749
|
+
}));
|
|
1750
|
+
|
|
1751
|
+
const miCapacityProviderCustom = new ecs.ManagedInstancesCapacityProvider(this, 'MICapacityProviderCustomRoles', {
|
|
1752
|
+
infrastructureRole: customInfrastructureRole,
|
|
1753
|
+
ec2InstanceProfile: customInstanceProfile,
|
|
1754
|
+
subnets: vpc.privateSubnets,
|
|
1755
|
+
});
|
|
1756
|
+
|
|
1757
|
+
// Add the capacity provider to the cluster
|
|
1758
|
+
cluster.addManagedInstancesCapacityProvider(miCapacityProviderCustom);
|
|
1759
|
+
|
|
1760
|
+
const taskDefinition = new ecs.TaskDefinition(this, 'TaskDef', {
|
|
1761
|
+
memoryMiB: '512',
|
|
1762
|
+
cpu: '256',
|
|
1763
|
+
networkMode: ecs.NetworkMode.AWS_VPC,
|
|
1764
|
+
compatibility: ecs.Compatibility.MANAGED_INSTANCES,
|
|
1765
|
+
});
|
|
1766
|
+
|
|
1767
|
+
taskDefinition.addContainer('web', {
|
|
1768
|
+
image: ecs.ContainerImage.fromRegistry('amazon/amazon-ecs-sample'),
|
|
1769
|
+
memoryReservationMiB: 256,
|
|
1770
|
+
});
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
new ecs.FargateService(this, 'FargateService', {
|
|
1774
|
+
|
|
1775
|
+
cluster,
|
|
1776
|
+
taskDefinition,
|
|
1777
|
+
minHealthyPercent: 100,
|
|
1778
|
+
capacityProviderStrategies: [
|
|
1779
|
+
{
|
|
1780
|
+
capacityProvider: miCapacityProviderCustom.capacityProviderName,
|
|
1781
|
+
weight: 1,
|
|
1782
|
+
},
|
|
1783
|
+
],
|
|
1784
|
+
});
|
|
1785
|
+
```
|
|
1786
|
+
|
|
1721
1787
|
You can specify detailed instance requirements to control which types of instances are used:
|
|
1722
1788
|
|
|
1723
1789
|
```ts
|
|
1724
|
-
declare const infrastructureRole: iam.Role;
|
|
1725
|
-
declare const instanceProfile: iam.InstanceProfile;
|
|
1726
1790
|
declare const vpc: ec2.Vpc;
|
|
1727
1791
|
|
|
1728
1792
|
const miCapacityProvider = new ecs.ManagedInstancesCapacityProvider(this, 'MICapacityProvider', {
|
|
1729
|
-
infrastructureRole,
|
|
1730
|
-
ec2InstanceProfile: instanceProfile,
|
|
1731
1793
|
subnets: vpc.privateSubnets,
|
|
1732
1794
|
instanceRequirements: {
|
|
1733
1795
|
// Required: CPU and memory constraints
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import * as ec2 from 'aws-cdk-lib/aws-ec2';
|
|
2
|
+
import * as cdk from 'aws-cdk-lib';
|
|
3
|
+
import * as ecs from 'aws-cdk-lib/aws-ecs';
|
|
4
|
+
import * as integ from '@aws-cdk/integ-tests-alpha';
|
|
5
|
+
|
|
6
|
+
const app = new cdk.App({
|
|
7
|
+
postCliContext: {
|
|
8
|
+
'@aws-cdk/aws-ecs:removeDefaultDeploymentAlarm': true,
|
|
9
|
+
'@aws-cdk/aws-ecs:enableImdsBlockingDeprecatedFeature': false,
|
|
10
|
+
'@aws-cdk/aws-ecs:disableEcsImdsBlocking': false,
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
const stack = new cdk.Stack(app, 'integ-managedinstances-capacity-provider-default-roles');
|
|
14
|
+
|
|
15
|
+
const vpc = new ec2.Vpc(stack, 'Vpc', { maxAzs: 2, restrictDefaultSecurityGroup: true });
|
|
16
|
+
const cluster = new ecs.Cluster(stack, 'ManagedInstancesCluster', {
|
|
17
|
+
vpc,
|
|
18
|
+
enableFargateCapacityProviders: true,
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
// Create a security group for FMI instances
|
|
22
|
+
const fmiSecurityGroup = new ec2.SecurityGroup(stack, 'ManagedInstancesSecurityGroup', {
|
|
23
|
+
vpc,
|
|
24
|
+
description: 'Security group for ManagedInstances capacity provider instances',
|
|
25
|
+
allowAllOutbound: false,
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
// Add specific outbound rule for HTTPS
|
|
29
|
+
fmiSecurityGroup.addEgressRule(
|
|
30
|
+
ec2.Peer.anyIpv4(),
|
|
31
|
+
ec2.Port.tcp(443),
|
|
32
|
+
'Allow HTTPS outbound',
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
// Create MI Capacity Provider without specifying infrastructureRole or ec2InstanceProfile
|
|
36
|
+
// This will test the default roles
|
|
37
|
+
const miCapacityProvider = new ecs.ManagedInstancesCapacityProvider(stack, 'ManagedInstancesCapacityProvider', {
|
|
38
|
+
subnets: vpc.privateSubnets,
|
|
39
|
+
securityGroups: [fmiSecurityGroup],
|
|
40
|
+
propagateTags: ecs.PropagateManagedInstancesTags.CAPACITY_PROVIDER,
|
|
41
|
+
instanceRequirements: {
|
|
42
|
+
vCpuCountMin: 1,
|
|
43
|
+
memoryMin: cdk.Size.gibibytes(2),
|
|
44
|
+
cpuManufacturers: [ec2.CpuManufacturer.INTEL],
|
|
45
|
+
},
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
// Add FMI capacity provider to cluster
|
|
49
|
+
cluster.addManagedInstancesCapacityProvider(miCapacityProvider);
|
|
50
|
+
cluster.addDefaultCapacityProviderStrategy([
|
|
51
|
+
{
|
|
52
|
+
capacityProvider: miCapacityProvider.capacityProviderName,
|
|
53
|
+
weight: 1,
|
|
54
|
+
},
|
|
55
|
+
]);
|
|
56
|
+
|
|
57
|
+
// Create a task definition compatible with Managed Instances and Fargate
|
|
58
|
+
const taskDefinition = new ecs.TaskDefinition(stack, 'TaskDef', {
|
|
59
|
+
compatibility: ecs.Compatibility.FARGATE_AND_MANAGED_INSTANCES,
|
|
60
|
+
cpu: '256',
|
|
61
|
+
memoryMiB: '512',
|
|
62
|
+
networkMode: ecs.NetworkMode.AWS_VPC,
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
taskDefinition.addContainer('web', {
|
|
66
|
+
image: ecs.ContainerImage.fromRegistry('public.ecr.aws/docker/library/httpd:2.4'),
|
|
67
|
+
memoryLimitMiB: 512,
|
|
68
|
+
portMappings: [
|
|
69
|
+
{
|
|
70
|
+
containerPort: 80,
|
|
71
|
+
protocol: ecs.Protocol.TCP,
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
// Create a service using the MI capacity provider
|
|
77
|
+
new ecs.FargateService(stack, 'ManagedInstancesService', {
|
|
78
|
+
cluster,
|
|
79
|
+
taskDefinition,
|
|
80
|
+
capacityProviderStrategies: [
|
|
81
|
+
{
|
|
82
|
+
capacityProvider: miCapacityProvider.capacityProviderName,
|
|
83
|
+
weight: 1,
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
desiredCount: 1,
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
new integ.IntegTest(app, 'ManagedInstancesCapacityProvidersDefaultRoles', {
|
|
90
|
+
testCases: [stack],
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
app.synth();
|
|
@@ -282,7 +282,7 @@ cluster.addNodegroupCapacity('custom-node-group', {
|
|
|
282
282
|
});
|
|
283
283
|
```
|
|
284
284
|
|
|
285
|
-
> **NOTE:** If you add instances with the inferentia class (`inf1` or `inf2`) or trainium class (`trn1` or `
|
|
285
|
+
> **NOTE:** If you add instances with the inferentia class (`inf1` or `inf2`) or trainium class (`trn1`, `trn1n`, or `trn2`)
|
|
286
286
|
> the [neuron plugin](https://awsdocs-neuron.readthedocs-hosted.com/en/latest/containers/dlc-then-eks-devflow.html)
|
|
287
287
|
> will be automatically installed in the kubernetes cluster.
|
|
288
288
|
|
|
@@ -109,9 +109,10 @@ Log events matching a particular filter can be sent to either a Lambda function
|
|
|
109
109
|
or a Kinesis stream.
|
|
110
110
|
|
|
111
111
|
If the Kinesis stream lives in a different account, a `CrossAccountDestination`
|
|
112
|
-
object
|
|
113
|
-
for the remote Kinesis stream.
|
|
114
|
-
|
|
112
|
+
object must be explicitly created in the destination account which will act as a proxy
|
|
113
|
+
for the remote Kinesis stream.
|
|
114
|
+
|
|
115
|
+
Note: The aws-cdk-lib/aws-logs-destinations KinesisDestination construct does not automatically create a CrossAccountDestination for cross-account scenarios.
|
|
115
116
|
|
|
116
117
|
Create a `SubscriptionFilter`, initialize it with an appropriate `Pattern` (see
|
|
117
118
|
below) and supply the intended destination:
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as ec2 from 'aws-cdk-lib/aws-ec2';
|
|
2
|
+
import * as cdk from 'aws-cdk-lib';
|
|
3
|
+
import {
|
|
4
|
+
DatabaseInstanceEngine,
|
|
5
|
+
OptionGroup,
|
|
6
|
+
OracleEngineVersion,
|
|
7
|
+
} from 'aws-cdk-lib/aws-rds';
|
|
8
|
+
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
|
|
9
|
+
|
|
10
|
+
class OptionGroupTestStack extends cdk.Stack {
|
|
11
|
+
constructor(scope: cdk.App, id: string) {
|
|
12
|
+
super(scope, id);
|
|
13
|
+
const vpc = new ec2.Vpc(this, 'VPC', { maxAzs: 2, restrictDefaultSecurityGroup: false });
|
|
14
|
+
|
|
15
|
+
const optionGroup = new OptionGroup(this, 'OptionGroup', {
|
|
16
|
+
engine: DatabaseInstanceEngine.oracleSe2({
|
|
17
|
+
version: OracleEngineVersion.VER_19,
|
|
18
|
+
}),
|
|
19
|
+
description: 'Custom Option Grouptest',
|
|
20
|
+
optionGroupName: 'custom-og-name',
|
|
21
|
+
configurations: [
|
|
22
|
+
{
|
|
23
|
+
name: 'OEM',
|
|
24
|
+
port: 1158,
|
|
25
|
+
vpc,
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
});
|
|
29
|
+
optionGroup.optionConnections.OEM.connections.allowDefaultPortFrom(
|
|
30
|
+
ec2.Peer.ipv4('10.0.0.0/16'),
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const app = new cdk.App();
|
|
36
|
+
const stack = new OptionGroupTestStack(app, 'aws-rds-option-group');
|
|
37
|
+
new IntegTest(app, 'OptionGroupTest', {
|
|
38
|
+
testCases: [stack],
|
|
39
|
+
});
|
|
40
|
+
app.synth();
|
|
@@ -10,6 +10,7 @@ import { RegionInfo } from 'aws-cdk-lib/region-info';
|
|
|
10
10
|
import * as iam from 'aws-cdk-lib/aws-iam';
|
|
11
11
|
import * as s3 from 'aws-cdk-lib/aws-s3';
|
|
12
12
|
import * as s3assets from 'aws-cdk-lib/aws-s3-assets';
|
|
13
|
+
import { SOLUTION_STACK_NAME } from '../../utils/aws-elasticbeanstalk';
|
|
13
14
|
|
|
14
15
|
class TestStack extends cdk.Stack {
|
|
15
16
|
constructor(scope: Construct, id: string) {
|
|
@@ -77,7 +78,7 @@ class TestStack extends cdk.Stack {
|
|
|
77
78
|
|
|
78
79
|
const eb = new elasticbeanstalk.CfnEnvironment(this, 'Environment', {
|
|
79
80
|
applicationName: appName,
|
|
80
|
-
solutionStackName:
|
|
81
|
+
solutionStackName: SOLUTION_STACK_NAME.NODEJS_20,
|
|
81
82
|
environmentName: 'MyEnvironment',
|
|
82
83
|
optionSettings: optionSettingProperties,
|
|
83
84
|
versionLabel: appVersion.ref,
|
|
@@ -7,6 +7,7 @@ import { IntegTest } from '@aws-cdk/integ-tests-alpha';
|
|
|
7
7
|
import * as elasticbeanstalk from 'aws-cdk-lib/aws-elasticbeanstalk';
|
|
8
8
|
import * as custom from 'aws-cdk-lib/custom-resources';
|
|
9
9
|
import { RegionInfo } from '@aws-cdk/region-info';
|
|
10
|
+
import { SOLUTION_STACK_NAME } from '../../utils/aws-elasticbeanstalk';
|
|
10
11
|
|
|
11
12
|
const app = new App({
|
|
12
13
|
postCliContext: {
|
|
@@ -63,7 +64,7 @@ const optionSettings: elasticbeanstalk.CfnEnvironment.OptionSettingProperty[] =
|
|
|
63
64
|
|
|
64
65
|
const ebsEnv = new elasticbeanstalk.CfnEnvironment(stack, 'Environment', {
|
|
65
66
|
applicationName,
|
|
66
|
-
solutionStackName:
|
|
67
|
+
solutionStackName: SOLUTION_STACK_NAME.NODEJS_22,
|
|
67
68
|
optionSettings,
|
|
68
69
|
});
|
|
69
70
|
ebsEnv.addDependency(ebsApp);
|
|
@@ -6,6 +6,7 @@ import * as targets from 'aws-cdk-lib/aws-route53-targets';
|
|
|
6
6
|
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
|
|
7
7
|
import * as elasticbeanstalk from 'aws-cdk-lib/aws-elasticbeanstalk';
|
|
8
8
|
import * as custom from 'aws-cdk-lib/custom-resources';
|
|
9
|
+
import { SOLUTION_STACK_NAME } from '../../utils/aws-elasticbeanstalk';
|
|
9
10
|
|
|
10
11
|
const app = new App({
|
|
11
12
|
postCliContext: {
|
|
@@ -66,7 +67,7 @@ const optionSettings: elasticbeanstalk.CfnEnvironment.OptionSettingProperty[] =
|
|
|
66
67
|
|
|
67
68
|
const ebsEnv = new elasticbeanstalk.CfnEnvironment(stack, 'Environment', {
|
|
68
69
|
applicationName,
|
|
69
|
-
solutionStackName:
|
|
70
|
+
solutionStackName: SOLUTION_STACK_NAME.NODEJS_22,
|
|
70
71
|
optionSettings,
|
|
71
72
|
});
|
|
72
73
|
ebsEnv.addDependency(ebsApp);
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/README.md
CHANGED
|
@@ -49,6 +49,7 @@ This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aw
|
|
|
49
49
|
- [RunTask](#runtask)
|
|
50
50
|
- [EC2](#ec2)
|
|
51
51
|
- [Fargate](#fargate)
|
|
52
|
+
- [Capacity Provider Options](#capacity-provider-options)
|
|
52
53
|
- [Override CPU and Memory Parameter](#override-cpu-and-memory-parameter)
|
|
53
54
|
- [ECS enable Exec](#ecs-enable-exec)
|
|
54
55
|
- [EMR](#emr)
|
|
@@ -829,6 +830,52 @@ const runTask = new tasks.EcsRunTask(this, 'RunFargate', {
|
|
|
829
830
|
});
|
|
830
831
|
```
|
|
831
832
|
|
|
833
|
+
#### Capacity Provider Options
|
|
834
|
+
|
|
835
|
+
The `capacityProviderOptions` property allows you to configure the capacity provider
|
|
836
|
+
strategy for both EC2 and Fargate launch targets.
|
|
837
|
+
|
|
838
|
+
- When `CapacityProviderOptions.custom()` is used, you can specify a custom capacity provider strategy.
|
|
839
|
+
- When `CapacityProviderOptions.default()` is used, the task uses the cluster's default capacity provider strategy.
|
|
840
|
+
- If `capacityProviderOptions` is not specified, the task uses the launch type (EC2 or FARGATE) without a capacity provider strategy.
|
|
841
|
+
|
|
842
|
+
```ts
|
|
843
|
+
const vpc = ec2.Vpc.fromLookup(this, 'Vpc', {
|
|
844
|
+
isDefault: true,
|
|
845
|
+
});
|
|
846
|
+
|
|
847
|
+
const cluster = new ecs.Cluster(this, 'FargateCluster', { vpc });
|
|
848
|
+
|
|
849
|
+
const taskDefinition = new ecs.TaskDefinition(this, 'TD', {
|
|
850
|
+
memoryMiB: '512',
|
|
851
|
+
cpu: '256',
|
|
852
|
+
compatibility: ecs.Compatibility.FARGATE,
|
|
853
|
+
});
|
|
854
|
+
|
|
855
|
+
// Use custom() option - specify custom capacity provider strategy
|
|
856
|
+
const runTaskWithCustom = new tasks.EcsRunTask(this, 'RunTaskWithCustom', {
|
|
857
|
+
cluster,
|
|
858
|
+
taskDefinition,
|
|
859
|
+
launchTarget: new tasks.EcsFargateLaunchTarget({
|
|
860
|
+
platformVersion: ecs.FargatePlatformVersion.VERSION1_4,
|
|
861
|
+
capacityProviderOptions: tasks.CapacityProviderOptions.custom([
|
|
862
|
+
{ capacityProvider: 'FARGATE_SPOT', weight: 2, base: 1 },
|
|
863
|
+
{ capacityProvider: 'FARGATE', weight: 1 },
|
|
864
|
+
]),
|
|
865
|
+
}),
|
|
866
|
+
});
|
|
867
|
+
|
|
868
|
+
// Use default() option - uses cluster's default capacity provider strategy
|
|
869
|
+
const runTaskWithDefault = new tasks.EcsRunTask(this, 'RunTaskWithDefault', {
|
|
870
|
+
cluster,
|
|
871
|
+
taskDefinition,
|
|
872
|
+
launchTarget: new tasks.EcsFargateLaunchTarget({
|
|
873
|
+
platformVersion: ecs.FargatePlatformVersion.VERSION1_4,
|
|
874
|
+
capacityProviderOptions: tasks.CapacityProviderOptions.default(),
|
|
875
|
+
}),
|
|
876
|
+
});
|
|
877
|
+
```
|
|
878
|
+
|
|
832
879
|
#### Override CPU and Memory Parameter
|
|
833
880
|
|
|
834
881
|
By setting the property cpu or memoryMiB, you can override the Fargate or EC2 task instance size at runtime.
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import * as path from 'path';
|
|
2
|
+
import * as asg from 'aws-cdk-lib/aws-autoscaling';
|
|
3
|
+
import * as ec2 from 'aws-cdk-lib/aws-ec2';
|
|
4
|
+
import * as ecs from 'aws-cdk-lib/aws-ecs';
|
|
5
|
+
import * as sfn from 'aws-cdk-lib/aws-stepfunctions';
|
|
6
|
+
import * as cdk from 'aws-cdk-lib';
|
|
7
|
+
import { Duration } from 'aws-cdk-lib';
|
|
8
|
+
import * as tasks from 'aws-cdk-lib/aws-stepfunctions-tasks';
|
|
9
|
+
import { IntegTest, ExpectedResult } from '@aws-cdk/integ-tests-alpha';
|
|
10
|
+
|
|
11
|
+
const app = new cdk.App();
|
|
12
|
+
const stack = new cdk.Stack(app, 'aws-sfn-tasks-ecs-ec2-run-task-capacity-provider');
|
|
13
|
+
|
|
14
|
+
const cluster = new ecs.Cluster(stack, 'Ec2Cluster');
|
|
15
|
+
|
|
16
|
+
// Create Auto Scaling Groups
|
|
17
|
+
const autoScalingGroup1 = new asg.AutoScalingGroup(stack, 'AutoScalingGroup1', {
|
|
18
|
+
vpc: cluster.vpc,
|
|
19
|
+
instanceType: new ec2.InstanceType('t2.micro'),
|
|
20
|
+
machineImage: ecs.EcsOptimizedImage.amazonLinux2(),
|
|
21
|
+
minCapacity: 1,
|
|
22
|
+
maxCapacity: 2,
|
|
23
|
+
vpcSubnets: { subnetType: ec2.SubnetType.PUBLIC },
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
const autoScalingGroup2 = new asg.AutoScalingGroup(stack, 'AutoScalingGroup2', {
|
|
27
|
+
vpc: cluster.vpc,
|
|
28
|
+
instanceType: new ec2.InstanceType('t2.micro'),
|
|
29
|
+
machineImage: ecs.EcsOptimizedImage.amazonLinux2(),
|
|
30
|
+
minCapacity: 1,
|
|
31
|
+
maxCapacity: 2,
|
|
32
|
+
vpcSubnets: { subnetType: ec2.SubnetType.PUBLIC },
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
// Create and add Capacity Providers
|
|
36
|
+
const capacityProvider1 = new ecs.AsgCapacityProvider(stack, 'CP1', {
|
|
37
|
+
autoScalingGroup: autoScalingGroup1,
|
|
38
|
+
enableManagedTerminationProtection: false,
|
|
39
|
+
enableManagedDraining: true,
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
const capacityProvider2 = new ecs.AsgCapacityProvider(stack, 'CP2', {
|
|
43
|
+
autoScalingGroup: autoScalingGroup2,
|
|
44
|
+
enableManagedTerminationProtection: false,
|
|
45
|
+
enableManagedDraining: true,
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
cluster.addAsgCapacityProvider(capacityProvider1);
|
|
49
|
+
cluster.addAsgCapacityProvider(capacityProvider2);
|
|
50
|
+
|
|
51
|
+
// Set default capacity provider strategy for the cluster
|
|
52
|
+
cluster.addDefaultCapacityProviderStrategy([
|
|
53
|
+
{ capacityProvider: capacityProvider1.capacityProviderName, weight: 1, base: 1 },
|
|
54
|
+
{ capacityProvider: capacityProvider2.capacityProviderName, weight: 2 },
|
|
55
|
+
]);
|
|
56
|
+
|
|
57
|
+
// Build task definition
|
|
58
|
+
const taskDefinition = new ecs.Ec2TaskDefinition(stack, 'TaskDef');
|
|
59
|
+
const containerDefinition = taskDefinition.addContainer('Container', {
|
|
60
|
+
image: ecs.ContainerImage.fromAsset(path.resolve(__dirname, 'eventhandler-image')),
|
|
61
|
+
memoryLimitMiB: 256,
|
|
62
|
+
logging: new ecs.AwsLogDriver({ streamPrefix: 'EventDemo' }),
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
// Build state machine with different capacity provider options
|
|
66
|
+
const definition = new sfn.Pass(stack, 'Start', {
|
|
67
|
+
result: sfn.Result.fromObject({ SomeKey: 'SomeValue' }),
|
|
68
|
+
}).next(
|
|
69
|
+
// Task without capacity provider option - uses launch type
|
|
70
|
+
new tasks.EcsRunTask(stack, 'Ec2TaskWithNone', {
|
|
71
|
+
integrationPattern: sfn.IntegrationPattern.RUN_JOB,
|
|
72
|
+
cluster,
|
|
73
|
+
taskDefinition,
|
|
74
|
+
containerOverrides: [
|
|
75
|
+
{
|
|
76
|
+
containerDefinition,
|
|
77
|
+
environment: [
|
|
78
|
+
{
|
|
79
|
+
name: 'SOME_KEY',
|
|
80
|
+
value: sfn.JsonPath.stringAt('$.SomeKey'),
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
launchTarget: new tasks.EcsEc2LaunchTarget(),
|
|
86
|
+
enableExecuteCommand: true,
|
|
87
|
+
resultPath: sfn.JsonPath.DISCARD,
|
|
88
|
+
}),
|
|
89
|
+
).next(
|
|
90
|
+
// Task with custom capacity provider option
|
|
91
|
+
new tasks.EcsRunTask(stack, 'Ec2TaskWithCustom', {
|
|
92
|
+
cluster,
|
|
93
|
+
taskDefinition,
|
|
94
|
+
launchTarget: new tasks.EcsEc2LaunchTarget({
|
|
95
|
+
capacityProviderOptions: tasks.CapacityProviderOptions.custom([
|
|
96
|
+
{
|
|
97
|
+
capacityProvider: capacityProvider1.capacityProviderName,
|
|
98
|
+
weight: 1,
|
|
99
|
+
base: 0,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
capacityProvider: capacityProvider2.capacityProviderName,
|
|
103
|
+
weight: 2,
|
|
104
|
+
base: 1,
|
|
105
|
+
},
|
|
106
|
+
]),
|
|
107
|
+
}),
|
|
108
|
+
resultPath: sfn.JsonPath.DISCARD,
|
|
109
|
+
}),
|
|
110
|
+
).next(
|
|
111
|
+
// Task with default capacity provider option - uses cluster default
|
|
112
|
+
new tasks.EcsRunTask(stack, 'Ec2TaskWithDefault', {
|
|
113
|
+
cluster,
|
|
114
|
+
taskDefinition,
|
|
115
|
+
launchTarget: new tasks.EcsEc2LaunchTarget({
|
|
116
|
+
capacityProviderOptions: tasks.CapacityProviderOptions.default(),
|
|
117
|
+
}),
|
|
118
|
+
resultPath: sfn.JsonPath.DISCARD,
|
|
119
|
+
}),
|
|
120
|
+
);
|
|
121
|
+
|
|
122
|
+
const sm = new sfn.StateMachine(stack, 'StateMachine', {
|
|
123
|
+
definition,
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
const integ = new IntegTest(app, 'SfnTasksEcsEc2RunTaskCapacityProviderTest', {
|
|
127
|
+
testCases: [stack],
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
// Start state machine execution and verify it succeeds
|
|
131
|
+
const startExecutionCall = integ.assertions.awsApiCall('StepFunctions', 'startExecution', {
|
|
132
|
+
stateMachineArn: sm.stateMachineArn,
|
|
133
|
+
input: JSON.stringify({ SomeKey: 'SomeValue' }),
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
startExecutionCall.next(
|
|
137
|
+
integ.assertions.awsApiCall('StepFunctions', 'describeExecution', {
|
|
138
|
+
executionArn: startExecutionCall.getAttString('executionArn'),
|
|
139
|
+
}).expect(ExpectedResult.objectLike({
|
|
140
|
+
status: 'SUCCEEDED',
|
|
141
|
+
})).waitForAssertions({
|
|
142
|
+
totalTimeout: Duration.minutes(15),
|
|
143
|
+
interval: Duration.seconds(10),
|
|
144
|
+
}),
|
|
145
|
+
);
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import * as path from 'path';
|
|
2
|
+
import * as ecs from 'aws-cdk-lib/aws-ecs';
|
|
3
|
+
import * as sfn from 'aws-cdk-lib/aws-stepfunctions';
|
|
4
|
+
import * as cdk from 'aws-cdk-lib';
|
|
5
|
+
import { Duration } from 'aws-cdk-lib';
|
|
6
|
+
import * as tasks from 'aws-cdk-lib/aws-stepfunctions-tasks';
|
|
7
|
+
import { IntegTest, ExpectedResult } from '@aws-cdk/integ-tests-alpha';
|
|
8
|
+
|
|
9
|
+
const app = new cdk.App();
|
|
10
|
+
const stack = new cdk.Stack(app, 'aws-sfn-tasks-ecs-fargate-run-task-capacity-provider');
|
|
11
|
+
|
|
12
|
+
const cluster = new ecs.Cluster(stack, 'FargateCluster');
|
|
13
|
+
|
|
14
|
+
// Enable FARGATE and FARGATE_SPOT capacity providers
|
|
15
|
+
cluster.enableFargateCapacityProviders();
|
|
16
|
+
|
|
17
|
+
// Set default capacity provider strategy for the cluster
|
|
18
|
+
cluster.addDefaultCapacityProviderStrategy([
|
|
19
|
+
{ capacityProvider: 'FARGATE', weight: 1, base: 1 },
|
|
20
|
+
{ capacityProvider: 'FARGATE_SPOT', weight: 4 },
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
// Build task definition
|
|
24
|
+
const taskDefinition = new ecs.FargateTaskDefinition(stack, 'TaskDef', {
|
|
25
|
+
memoryLimitMiB: 512,
|
|
26
|
+
cpu: 256,
|
|
27
|
+
runtimePlatform: {
|
|
28
|
+
cpuArchitecture: ecs.CpuArchitecture.X86_64,
|
|
29
|
+
operatingSystemFamily: ecs.OperatingSystemFamily.LINUX,
|
|
30
|
+
},
|
|
31
|
+
});
|
|
32
|
+
const containerDefinition = taskDefinition.addContainer('TheContainer', {
|
|
33
|
+
image: ecs.ContainerImage.fromAsset(path.resolve(__dirname, 'eventhandler-image')),
|
|
34
|
+
memoryLimitMiB: 256,
|
|
35
|
+
logging: new ecs.AwsLogDriver({ streamPrefix: 'EventDemo' }),
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
// Build state machine with different capacity provider options
|
|
39
|
+
const definition = new sfn.Pass(stack, 'Start', {
|
|
40
|
+
result: sfn.Result.fromObject({ SomeKey: 'SomeValue', Timeout: 900 }),
|
|
41
|
+
}).next(
|
|
42
|
+
// Task without capacity provider option - uses launch type
|
|
43
|
+
new tasks.EcsRunTask(stack, 'FargateTaskWithNone', {
|
|
44
|
+
integrationPattern: sfn.IntegrationPattern.RUN_JOB,
|
|
45
|
+
cluster,
|
|
46
|
+
taskDefinition,
|
|
47
|
+
assignPublicIp: true,
|
|
48
|
+
containerOverrides: [
|
|
49
|
+
{
|
|
50
|
+
containerDefinition,
|
|
51
|
+
environment: [
|
|
52
|
+
{
|
|
53
|
+
name: 'SOME_KEY',
|
|
54
|
+
value: sfn.JsonPath.stringAt('$.SomeKey'),
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
},
|
|
58
|
+
],
|
|
59
|
+
launchTarget: new tasks.EcsFargateLaunchTarget({
|
|
60
|
+
platformVersion: ecs.FargatePlatformVersion.VERSION1_4,
|
|
61
|
+
}),
|
|
62
|
+
taskTimeout: sfn.Timeout.at('$.Timeout'),
|
|
63
|
+
cpu: '1024',
|
|
64
|
+
memoryMiB: '2048',
|
|
65
|
+
resultPath: sfn.JsonPath.DISCARD,
|
|
66
|
+
}),
|
|
67
|
+
).next(
|
|
68
|
+
// Task with custom capacity provider option
|
|
69
|
+
new tasks.EcsRunTask(stack, 'FargateTaskWithCustom', {
|
|
70
|
+
cluster,
|
|
71
|
+
taskDefinition,
|
|
72
|
+
launchTarget: new tasks.EcsFargateLaunchTarget({
|
|
73
|
+
platformVersion: ecs.FargatePlatformVersion.VERSION1_4,
|
|
74
|
+
capacityProviderOptions: tasks.CapacityProviderOptions.custom([
|
|
75
|
+
{
|
|
76
|
+
capacityProvider: 'FARGATE',
|
|
77
|
+
weight: 1,
|
|
78
|
+
base: 0,
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
capacityProvider: 'FARGATE_SPOT',
|
|
82
|
+
weight: 2,
|
|
83
|
+
base: 1,
|
|
84
|
+
},
|
|
85
|
+
]),
|
|
86
|
+
}),
|
|
87
|
+
resultPath: sfn.JsonPath.DISCARD,
|
|
88
|
+
}),
|
|
89
|
+
).next(
|
|
90
|
+
// Task with default capacity provider option - uses cluster default
|
|
91
|
+
new tasks.EcsRunTask(stack, 'FargateTaskWithDefault', {
|
|
92
|
+
cluster,
|
|
93
|
+
taskDefinition,
|
|
94
|
+
launchTarget: new tasks.EcsFargateLaunchTarget({
|
|
95
|
+
platformVersion: ecs.FargatePlatformVersion.VERSION1_4,
|
|
96
|
+
capacityProviderOptions: tasks.CapacityProviderOptions.default(),
|
|
97
|
+
}),
|
|
98
|
+
resultPath: sfn.JsonPath.DISCARD,
|
|
99
|
+
}),
|
|
100
|
+
);
|
|
101
|
+
|
|
102
|
+
const sm = new sfn.StateMachine(stack, 'StateMachine', {
|
|
103
|
+
definition,
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
const integ = new IntegTest(app, 'SfnTasksEcsFargateRunTaskCapacityProviderTest', {
|
|
107
|
+
testCases: [stack],
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
// Start state machine execution and verify it succeeds
|
|
111
|
+
const startExecutionCall = integ.assertions.awsApiCall('StepFunctions', 'startExecution', {
|
|
112
|
+
stateMachineArn: sm.stateMachineArn,
|
|
113
|
+
input: JSON.stringify({ SomeKey: 'SomeValue', Timeout: 900 }),
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
startExecutionCall.next(
|
|
117
|
+
integ.assertions.awsApiCall('StepFunctions', 'describeExecution', {
|
|
118
|
+
executionArn: startExecutionCall.getAttString('executionArn'),
|
|
119
|
+
}).expect(ExpectedResult.objectLike({
|
|
120
|
+
status: 'SUCCEEDED',
|
|
121
|
+
})).waitForAssertions({
|
|
122
|
+
totalTimeout: Duration.minutes(15),
|
|
123
|
+
interval: Duration.seconds(10),
|
|
124
|
+
}),
|
|
125
|
+
);
|
|
@@ -108,7 +108,7 @@ Flags come in three types:
|
|
|
108
108
|
| [@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId](#aws-cdkaws-ecs-patternsuniquetargetgroupid) | When enabled, ECS patterns will generate unique target group IDs to prevent conflicts during load balancer replacement | 2.221.0 | fix |
|
|
109
109
|
| [@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint](#aws-cdkaws-stepfunctions-taskshttpinvokedynamicjsonpathendpoint) | When enabled, allows using a dynamic apiEndpoint with JSONPath format in HttpInvoke tasks. | 2.221.0 | fix |
|
|
110
110
|
| [@aws-cdk/aws-elasticloadbalancingv2:networkLoadBalancerWithSecurityGroupByDefault](#aws-cdkaws-elasticloadbalancingv2networkloadbalancerwithsecuritygroupbydefault) | When enabled, Network Load Balancer will be created with a security group by default. | 2.222.0 | new default |
|
|
111
|
-
| [@aws-cdk/aws-route53-patterns:useDistribution](#aws-cdkaws-route53-patternsusedistribution) | Use the `Distribution` resource instead of `CloudFrontWebDistribution` |
|
|
111
|
+
| [@aws-cdk/aws-route53-patterns:useDistribution](#aws-cdkaws-route53-patternsusedistribution) | Use the `Distribution` resource instead of `CloudFrontWebDistribution` | 2.233.0 | new default |
|
|
112
112
|
|
|
113
113
|
<!-- END table -->
|
|
114
114
|
|
|
@@ -2306,7 +2306,7 @@ of the deprecated `CloudFrontWebDistribution` construct.
|
|
|
2306
2306
|
| Since | Unset behaves like | Recommended value |
|
|
2307
2307
|
| ----- | ----- | ----- |
|
|
2308
2308
|
| (not in v1) | | |
|
|
2309
|
-
|
|
|
2309
|
+
| 2.233.0 | `false` | `true` |
|
|
2310
2310
|
|
|
2311
2311
|
**Compatibility with old behavior:** Define a `CloudFrontWebDistribution` explicitly
|
|
2312
2312
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: konokenj.cdk-api-mcp-server
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.67.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
|
[](https://pypi.org/project/konokenj.cdk-api-mcp-server)
|
|
27
27
|
|
|
28
28
|
<!-- DEP-VERSIONS-START -->
|
|
29
|
-
[](https://github.com/konokenj/cdk-api-mcp-server/blob/main/current-versions/aws-cdk.txt)
|
|
30
30
|
<!-- DEP-VERSIONS-END -->
|
|
31
31
|
|
|
32
32
|
---
|
{konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cdk_api_mcp_server/__about__.py,sha256=
|
|
1
|
+
cdk_api_mcp_server/__about__.py,sha256=LZM9iy6D3DlaqtECpeJmOhCMVfw-dwfUrV_RgNeH0U8,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
|
|
@@ -30,7 +30,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-kinesisanalytics-fl
|
|
|
30
30
|
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-lambda-go-alpha/README.md,sha256=7_Sw_WVDupigK_xyFd8k8bSSKISy9TELakm-zfpCmY4,14262
|
|
31
31
|
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-lambda-python-alpha/README.md,sha256=xG6KK3MhND12qlwfM6N0NIs1h75mlBxpC-Jx0xdyNzI,11776
|
|
32
32
|
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-location-alpha/README.md,sha256=rqUOPlv75EaHggDbeRCRhIXIo-rN9elMpeUApG_7Oaw,8041
|
|
33
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-msk-alpha/README.md,sha256=
|
|
33
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-msk-alpha/README.md,sha256=ZtU1pVMKsQSUfr0hGtfUpL1KMFEkgrZyehkcl-eSouY,9296
|
|
34
34
|
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-neptune-alpha/README.md,sha256=nshlXtSi7Q-R5ZF9b2GPuIJk8lSqpglafhKYXdlX3w0,9077
|
|
35
35
|
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-pipes-alpha/README.md,sha256=xbuQ4lkJLCThuzdgT87RQd-9BMJhPuSejHY90D5thq8,15012
|
|
36
36
|
cdk_api_mcp_server/resources/aws-cdk/constructs/@aws-cdk/aws-pipes-enrichments-alpha/README.md,sha256=xAEKkm8n4OdcuEXJ7PwQGZh65hL2zTJxNo46-3WdYOM,3142
|
|
@@ -417,7 +417,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-act
|
|
|
417
417
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-ecr-source.ts,sha256=iL19rhSPBw3a74vVKNnbyFZqHSsGPNmbtkl9W7BpiFU,3117
|
|
418
418
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-ecs-deploy.ts,sha256=gg-MtMFyIH4AaNOUXPbbP0jiENf-LJPf-in9swm1jrM,3307
|
|
419
419
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-ecs-separate-source.lit.ts,sha256=4gzbdTFIVxqlvl4VJPxJ-5mg3tXdvu9jCAiMzMxlzyg,8314
|
|
420
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-elastic-beanstalk-deploy.ts,sha256=
|
|
420
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-elastic-beanstalk-deploy.ts,sha256=bR6gXDpKRv1cGxYQd7o2Gm8FB5LJFVhT0WNo_3s9C2c,5573
|
|
421
421
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-events.ts,sha256=GlIigr-IQ80xWtanSq06gRxPvNVtRbh7kR0X09b8YBA,2224
|
|
422
422
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-invoke-action.ts,sha256=mLIohxRn-3Lx1HUTvQTjsoLnWu63kucyvpqqQwAvgQo,3486
|
|
423
423
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-codepipeline-actions/integ.pipeline-jenkins.ts,sha256=OIG2DO7Nc8mVT9wfFaZqgWjOHKkc_SJAHwfGXohT_bw,1827
|
|
@@ -567,6 +567,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-az
|
|
|
567
567
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-dual-stack-ec2.ts,sha256=pXXulJjjB_ApgTx5epz2VBDu2jkKUu1m6kr8SXaZGRI,2752
|
|
568
568
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-dual-stack.ts,sha256=dWkwoc6zi1N1CiXddbUJWo_rZgHLygHUfpfwtdNaRVs,882
|
|
569
569
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-egress-only-igw-feature-flag.ts,sha256=o5MLAj_Em_a9R8M1rnTK2_dkObDs621rzRJVgBQ-VJ4,1901
|
|
570
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-endpoint-eusc.ts,sha256=XrLPgAwZqrtfB76bUh-qi9A-HZeI0q6onBV7kRalyU4,1260
|
|
570
571
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-endpoint-service.ts,sha256=KyG-ItXc5YLYAWd3iCKfIEuqvh6-9VYW-8st0XK4ipw,957
|
|
571
572
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-endpoint.lit.ts,sha256=NENbXuesZ2Gg73iqsg1_jU7KMBof-0ZtcqVP1K0gago,2414
|
|
572
573
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ec2/integ.vpc-filter-subnets.ts,sha256=gLps2a21fNLRFPn3I-i1YS8NKFgzlwVIxd6K9_7X_fo,1232
|
|
@@ -600,7 +601,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ
|
|
|
600
601
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ.assets-tarball.ts,sha256=pSbNMWSorKT7lUTXxnzkxpcRumKPYWUmcbqRSwwWOgI,937
|
|
601
602
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecr-assets/integ.nested-stacks-docker.ts,sha256=4hDobse34oIG2r0mjbYXzsEXXLEqv077jUh3pjoYmcc,981
|
|
602
603
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/CONTRIBUTING.md,sha256=TlNwpeYemLdYq4jdo24v7nwDIj3RmZ7u2j_LCQiQR74,2634
|
|
603
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md,sha256=
|
|
604
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/README.md,sha256=Utp30UIi79tpWxwKHDJJTpDDlhvUDkgYHmEKVI5vse4,83639
|
|
604
605
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.add-docker-label.ts,sha256=avHktilCBVPuVelquVaY2ylRkSLraWn7vUIIIFPsbyI,1375
|
|
605
606
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.add-environment-variable.ts,sha256=sIdwJl7LYh5wlv_EDLPSGCavC2OF6W8IBwZ_hMOnCfw,1143
|
|
606
607
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.app-mesh-proxy-config.ts,sha256=qhtztZPppP98wdEneOEDI3p0P608q0DtS_Nv-6grLHM,1596
|
|
@@ -642,6 +643,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.gravit
|
|
|
642
643
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.graviton.ts,sha256=-L0L2_uXEpuszWK0FNPNErOVzYj6jLz_GN__t3-IUJo,719
|
|
643
644
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.lb-awsvpc-nw.ts,sha256=VGnwETVmq2owapn3crFeJ187sqNYjb1afkBcNZaRNzs,1813
|
|
644
645
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.lb-bridge-nw.ts,sha256=0nlq9ShB7EeFK-6OE6-id-5PCfhGaDf5snnzYNUnHCQ,1822
|
|
646
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.managedinstances-capacity-provider-default-roles.ts,sha256=CuvR4P7pA9IYH_7SPDMMwXOeMyWlCkaaL4JBuuRLf0Y,2824
|
|
645
647
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.managedinstances-capacity-provider.ts,sha256=v15lSJEI71zG-MPupT3UeWM0bgvI-TWjwaX7dDvLNO0,3631
|
|
646
648
|
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
|
|
647
649
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-ecs/integ.nlb-awsvpc-nw.ts,sha256=vXdMwV8Ythm3Qa4cHX_mg0WjRESCMYe0GgA3tX_uqTk,1474
|
|
@@ -721,7 +723,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-efs/integ.efs-tr
|
|
|
721
723
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-efs/integ.efs.permission.ts,sha256=bzH7koi5t2FgkDhEp-6ZtXgoteiCDTNd2igab4bXytA,3338
|
|
722
724
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-efs/integ.efs.ts,sha256=E9gP8v2MxNerg_EwkAc-4o6ikO08pLjZfDMI0M34_44,776
|
|
723
725
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/MANUAL_TEST.md,sha256=uObwqDllAUYBGkoNEAQGioL6JuKqh5ScVbq9KC3x89Q,1862
|
|
724
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/README.md,sha256=
|
|
726
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/README.md,sha256=9ZwSCK4SBdRPGcI_9nol9dJncmtBGWwXm6dX2g9bJM4,82374
|
|
725
727
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/integ.alb-controller-authapi.ts,sha256=L9dF26-F2Fw-O1iGAnT-AYnkq4JmO_IQoQn0RsOhLVY,1355
|
|
726
728
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/integ.alb-controller.ts,sha256=cbL2kY-t0LAWLkK1Lb3RUPBeMUpw8xHWjDhkroD_Rb4,3314
|
|
727
729
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-eks/integ.custom-addons.ts,sha256=ZXsXljCokHOA_JubQ7ZsLT-tGy-28mg1gZ_bmNX_F-k,1475
|
|
@@ -987,7 +989,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/in
|
|
|
987
989
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/integ.modules.ts,sha256=etsjdg80JJb_gag1tC0I2DgOcARVOCrRZsQYr46sQv0,2323
|
|
988
990
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/integ.nodejs.build.images.ts,sha256=6gF-Mb9LgF8E5PpGwkBmaWqepqEqzbTuSpnnqKZ1_sU,1721
|
|
989
991
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-lambda-nodejs/integ.specifycode.ts,sha256=JdlBTKpPf5xlQlfTYlXUMbMVwGD0a-heEYPx0ZNFO9U,1938
|
|
990
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/README.md,sha256=
|
|
992
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/README.md,sha256=_JHu8-Ff-ib19WShFFPnEBy-LDPsRq1aiixJEg37fIk,24587
|
|
991
993
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.expose-metric.ts,sha256=nHHNSRyq2eGVZkZe1_UWwdr7vWnBDqdMWoiArzJleHI,1256
|
|
992
994
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-logs/integ.log-group-metrics.ts,sha256=3t37idu5s4B6dxhZWD_7pNeue7eJCume6MdEgtc1TTs,707
|
|
993
995
|
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
|
|
@@ -1028,7 +1030,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-opensearchservic
|
|
|
1028
1030
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-opensearchservice/integ.opensearch.unsignedbasicauth.ts,sha256=B13diAjHunM-L1w1FHgpDRup-j4Xnnb-rpn171bbjpw,925
|
|
1029
1031
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-opensearchservice/integ.opensearch.vpc.ts,sha256=92FvTQd0U190KN53A8UU4eV3ggwm1GeVn4f3nRE56T0,1400
|
|
1030
1032
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-opensearchservice/integ.opensearch.without-logs-resource-policy.ts,sha256=CTj7BjTXc_Q4J_NnK8C62vXGl3ZIWMbmcuPHjvW01vU,1971
|
|
1031
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/README.md,sha256=
|
|
1033
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/README.md,sha256=jy-sddaLY39Rz3PMXl0OWvhE0jttYxcHSoDvhKb9IsA,68098
|
|
1032
1034
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/aurora-serverless-v2.md,sha256=D4_EKB6d62nNN0LwL3XGX0YFjwdSBXE8namaBUqU9qw,10484
|
|
1033
1035
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.cluster-applyimmediately.ts,sha256=UB7bdVX6UD63SYroZRXs5V493f1lUX_3lD5W7EeU5AQ,1135
|
|
1034
1036
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.cluster-availability-zone.ts,sha256=59DvW_-fFQ2NPddJdbayEu7V-NVBAPvm3A05IvbBOAA,1765
|
|
@@ -1078,6 +1080,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.instan
|
|
|
1078
1080
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.instance-with-metric.ts,sha256=oQJbFQH5yFC9X3MHr8wu2O6vvBBcHcJS0AW51q9BBrQ,1330
|
|
1079
1081
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.instance-with-parameter-group.ts,sha256=BELAKjpQc5Rlu2kjpJk8PUhQk2UySlkPhuHdVRiwUpQ,1158
|
|
1080
1082
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.instance.lit.ts,sha256=n8XH1sJD_y2vAMXy2JlOEY4Pg58qA-IpurwwA6NQMpU,4182
|
|
1083
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.option-group.ts,sha256=N1qNGMO7u7rgtQ_N_MZKwOgXXNeAF4Emk18QgvDIUws,1121
|
|
1081
1084
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.proxy-endpoint.ts,sha256=DBXydbhQkqKYcwS7EHoBu0AG-FSJ5NdD6RP3r6cxlo4,1186
|
|
1082
1085
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.proxy-mariadb.ts,sha256=h9qrowwmonRVBW53bJVz3wneeErmrHjPdqAoV31WFfY,1391
|
|
1083
1086
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-rds/integ.proxy-sql-server.ts,sha256=8168nOsK3O0H9OCyZe3vdqj3ZwB9LUo8c_yOiGM7IZg,1607
|
|
@@ -1117,9 +1120,9 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/
|
|
|
1117
1120
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.bucket-website-target.ts,sha256=jJniIvUmT1A3pQLizomE-J2Z22OGpxu7mL2iN0cXpsE,1354
|
|
1118
1121
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.classic-load-balancer-target.ts,sha256=12UhvD3F-ZGjDWycNKGBPE1YqM5WyDFmrqA_vh8KgaY,1737
|
|
1119
1122
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.cloudfront-alias-target.ts,sha256=hfx0sYsWhjWx25F1NliGvWdDDRPzUq-vSaOJkLkItNc,1421
|
|
1120
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-environment-target.ts,sha256=
|
|
1121
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-hostedzoneid.ts,sha256=
|
|
1122
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-token-endpoint.ts,sha256=
|
|
1123
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-environment-target.ts,sha256=npfnoVl2uIxbpjwyCXpUNwMEz64GZdaJlTnG-mgtM_c,5489
|
|
1124
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-hostedzoneid.ts,sha256=UahMpZ--146S05t6pkeD_SqGfa0Kq8tiGwk3dQ81hmY,3320
|
|
1125
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.elastic-beanstalk-token-endpoint.ts,sha256=xZ0vH59gTrZ8Ya-q28TkYGdNZke3yD_Pk-uId3RIlIg,3238
|
|
1123
1126
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.globalaccelerator-alias-target.ts,sha256=gUnUnmKAuQ-lkWxxDADiVeVYHbnA2W8n_pj9p8jn-4A,1477
|
|
1124
1127
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.interface-vpc-endpoint-target.ts,sha256=8PlAPtbxMr8TQezAMykKCgZx8QicPtu30GvGsTtt2tY,999
|
|
1125
1128
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-route53-targets/integ.route53-record.ts,sha256=x8gFRbKDGjmQOpjZgErQcnGlyf9o2NgvCQ56Ae7eBbw,849
|
|
@@ -1310,7 +1313,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions/in
|
|
|
1310
1313
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions/integ.state-machine-string.ts,sha256=SyMS-NCYiG438NnMDgT6NyGzGBYb3IWNPex6FEhr28I,652
|
|
1311
1314
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions/integ.state-machine-variables.ts,sha256=pwYfPpS-BYl-rj8raj4e2MDFLhxneEqXRZa1XyoK86g,1592
|
|
1312
1315
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions/integ.state-machine.ts,sha256=Th4guJjiux74rEMpTLzetv_6NFCjVfya2o1lTG9zSd8,1516
|
|
1313
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/README.md,sha256=
|
|
1316
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/README.md,sha256=hU46m8w7qbv1kGtkt2RxyaSeAM7ji43T6Puk0E4z2UQ,73671
|
|
1314
1317
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.call-aws-service-cross-region-lambda.ts,sha256=e8w0rI6QNP_jIPeHnBBKjPm85X2XW1Vs-Vn5dhnfi4k,3456
|
|
1315
1318
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.call-aws-service-cross-region-task-token.ts,sha256=uwoP3B56QTzly4keKfb9qoestPVUzhNJSju06ywgKEM,2423
|
|
1316
1319
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.call-aws-service-cross-region.ts,sha256=5v_BxT-kA_nsdLsbezjWa7Z3XmEOmQEQRwFOpwz1XFY,4259
|
|
@@ -1333,6 +1336,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-ta
|
|
|
1333
1336
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.create-training-job-image.ts,sha256=E5YZgtlY8dFGU2k3vz9pCwURLcBd-NRiHlf7GvquB2U,2515
|
|
1334
1337
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.create-training-job.ts,sha256=0BeDY_ZQNxBWC9FaVLcqyAJsLYSivtaX7bxQzXa6GQg,2726
|
|
1335
1338
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.create-transform-job.ts,sha256=TOh6gZPA4rhWN0n7J6Mm-MCMdP_yMuUaby1bDGuLcbQ,1541
|
|
1339
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.ec2-run-task-capacity-provider.ts,sha256=_uG4EiMXzRS5wrumpO1vPrOz6koiTMwQc44SNkubEDY,4781
|
|
1336
1340
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.ec2-run-task-ref-definition.ts,sha256=Jtqna9FkWzCEaBN3d5bE0-oWNxjUX9BfK4q65S2AgEI,1907
|
|
1337
1341
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.ec2-run-task.ts,sha256=yAw4dFMESaitUzrsMKi9jxwW1kJP5vznlAtKBSk2Bec,2715
|
|
1338
1342
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.ec2-task.ts,sha256=PbCzNaKN5trHhQhwMjSttmsQKLYDIhwFL-dwrSGXrZQ,2487
|
|
@@ -1351,6 +1355,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-ta
|
|
|
1351
1355
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.evaluate-expression-nodejs22.ts,sha256=3UwyEHJCdLgKggW1BN6mjNqnvOLYtc148rnqVvJe0X0,827
|
|
1352
1356
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.evaluate-expression-x86.ts,sha256=WBpGKkPTJKzda5f8pDByZyIVfQJVbfbHq89UF2oLCGk,893
|
|
1353
1357
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.evaluate-expression.ts,sha256=kYwlQa0KbbF7jQRCeit6rv96JRadB3-oKfEy3Tk3aS0,1956
|
|
1358
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.fargate-run-task-capacity-provider.ts,sha256=6cRJS1Fc0hprjg0ZclT4X6jyVORsOpFYuN8CQiszZIc,4047
|
|
1354
1359
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.fargate-run-task.ts,sha256=9zuY7fLrDlzNOvF8Wer8uI4vL55z6VMibsJLE_J1me4,3256
|
|
1355
1360
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.fargate-task.ts,sha256=l-BPaCZ00G2BYqppttyW_EvgamOiSbV4w2x1-m34Z2U,2231
|
|
1356
1361
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/aws-stepfunctions-tasks/integ.get-query-execution.ts,sha256=lhBo-q79ex-nUChZg9E-9KG9pwGYOl9ygTQevqLBEKE,1560
|
|
@@ -1443,7 +1448,7 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/custom-resources/int
|
|
|
1443
1448
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/custom-resources/integ.provider-with-waiter-state-machine-custom-role.ts,sha256=60mjzf_2NI9zO30B2Guye5sA7kxIl4yrLMXUEWIDO9I,2401
|
|
1444
1449
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/custom-resources/integ.provider-with-waiter-state-machine.ts,sha256=6Ci2_ABcu5azSj1f0EzY1VD4lQUg9KI5l1Q7ieejI-0,2058
|
|
1445
1450
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/custom-resources/integ.provider.ts,sha256=u_YVV0YZk6hyIxo5JOOSwwUORbqS3BVbJU6DIAwxuk0,1814
|
|
1446
|
-
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/cx-api/FEATURE_FLAGS.md,sha256=
|
|
1451
|
+
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/cx-api/FEATURE_FLAGS.md,sha256=9OIwfmum3NvUatQg-B58shP-9sLKVDepMye2D8bWRUU,109013
|
|
1447
1452
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/cx-api/NESTED_ASSEMBLIES.md,sha256=P8PNyr4hIC_i-9aUxa301-5-N4tLcoHYnELBp3C6SQQ,4949
|
|
1448
1453
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/cx-api/README.md,sha256=i37TV0RjG95gwV2Uesbx98JGbN3W12rbBRcCK9IXlqs,25543
|
|
1449
1454
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/interfaces/README.md,sha256=8UUDA_SWB_K_3AKpzwsj1h-_PgyrIAToZXRew_opfU0,710
|
|
@@ -1475,8 +1480,8 @@ cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/pipelines/integ.pipe
|
|
|
1475
1480
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/region-info/README.md,sha256=vewWkV3ds9o9iyyYaJBNTkaKJ2XA6K2yF17tAxUnujg,2718
|
|
1476
1481
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/triggers/README.md,sha256=hYIx7DbG_7p4LYLUfxDwgIQjw9UNdz1GLrqDe8_Dbko,4132
|
|
1477
1482
|
cdk_api_mcp_server/resources/aws-cdk/constructs/aws-cdk-lib/triggers/integ.triggers.ts,sha256=LfeVru_CggiFXKPVa8vwt6Uv43SV3oAioDGmd8PyMHc,2859
|
|
1478
|
-
konokenj_cdk_api_mcp_server-0.
|
|
1479
|
-
konokenj_cdk_api_mcp_server-0.
|
|
1480
|
-
konokenj_cdk_api_mcp_server-0.
|
|
1481
|
-
konokenj_cdk_api_mcp_server-0.
|
|
1482
|
-
konokenj_cdk_api_mcp_server-0.
|
|
1483
|
+
konokenj_cdk_api_mcp_server-0.67.0.dist-info/METADATA,sha256=4nA6kv8P9CunqYYPAPm2zvAtxI0fkQUzWZ4wvbSr9L8,2646
|
|
1484
|
+
konokenj_cdk_api_mcp_server-0.67.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
1485
|
+
konokenj_cdk_api_mcp_server-0.67.0.dist-info/entry_points.txt,sha256=bVDhMdyCC1WNMPOMbmB82jvWII2CIrwTZDygdCf0cYQ,79
|
|
1486
|
+
konokenj_cdk_api_mcp_server-0.67.0.dist-info/licenses/LICENSE.txt,sha256=5OIAASeg1HM22mVZ1enz9bgZ7TlsGfWXnj02P9OgFyk,1098
|
|
1487
|
+
konokenj_cdk_api_mcp_server-0.67.0.dist-info/RECORD,,
|
{konokenj_cdk_api_mcp_server-0.66.0.dist-info → konokenj_cdk_api_mcp_server-0.67.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|