Skip to content

Commit c562075

Browse files
authored
chore: update outdated repo links and package paths (#26619)
Update some outdated repository links and package paths since [repo remodeling](#24376). ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f910f78 commit c562075

File tree

77 files changed

+124
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+124
-129
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,8 @@ assertions against the deployed infrastructure.
352352
```
353353

354354
Examples:
355-
* [integ.destinations.ts](https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/aws-lambda-destinations/test/integ.destinations.ts#L7)
356-
* [integ.put-events.ts](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-stepfunctions-tasks/test/eventbridge/integ.put-events.ts)
355+
* [integ.destinations.ts](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk-testing/framework-integ/test/aws-lambda-destinations/test/integ.destinations.ts#L7)
356+
* [integ.put-events.ts](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/eventbridge/integ.put-events.ts)
357357

358358
**What if you cannot run integration tests**
359359

INTEGRATION_TESTS.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ an integration test for the new feature can ensure that it works and avoid unnec
4949

5050
**3. Involves configuring resource types across services (i.e. integrations)**
5151
For example, you are adding functionality that allows for service x to integrate with service y.
52-
A good example of this is the [aws-stepfunctions-tasks](./packages/@aws-cdk/aws-stepfunctions-tasks) or
53-
[aws-apigatewayv2-integrations](./packages/@aws-cdk/aws-apigatewayv2-integrations) modules. Both of these
52+
A good example of this is the [aws-stepfunctions-tasks](./packages/aws-cdk-lib/aws-stepfunctions-tasks) or
53+
[aws-apigatewayv2-integrations-alpha](./packages/@aws-cdk/aws-apigatewayv2-integrations-alpha) modules. Both of these
5454
have L2 constructs that provide functionality to integrate services.
5555

5656
Sometimes these integrations involve configuring/formatting json/vtl or some other type of data.
@@ -82,8 +82,8 @@ Lambda Function would look like this:
8282

8383
_integ.lambda.ts_
8484
```ts
85-
import * as iam from '@aws-cdk/aws-iam';
86-
import * as cdk from '@aws-cdk/core';
85+
import * as iam from 'aws-cdk-lib/aws-iam';
86+
import * as cdk from 'aws-cdk-lib/core';
8787
import * as lambda from '../lib';
8888
import * as integ from '@aws-cdk/integ-tests-alpha';
8989

@@ -230,11 +230,11 @@ to deploy the Lambda Function _and_ then rerun the assertions to ensure that the
230230
### Assertions
231231

232232
Sometimes it is necessary to perform some form of _assertion_ against the deployed infrastructure to validate that the
233-
test succeeds. A good example of this is the `@aws-cdk/aws-stepfunctions-tasks` module which creates integrations between
233+
test succeeds. A good example of this is the `aws-cdk-lib/aws-stepfunctions-tasks` module which creates integrations between
234234
AWS StepFunctions and other AWS services.
235235

236-
If we look at the [integ.put-events.ts](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-stepfunctions-tasks/test/eventbridge/integ.put-events.ts)
237-
integration test we can see that we are creating an `@aws-cdk/aws-events.EventBus` along with a `@aws-cdk/aws-stepfunctions.StateMachine`
236+
If we look at the [integ.put-events.ts](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/eventbridge/integ.put-events.ts)
237+
integration test we can see that we are creating an `aws-cdk-lib/aws-events.EventBus` along with a `aws-cdk-lib/aws-stepfunctions.StateMachine`
238238
which will send an event to the `EventBus`. In a typical integration test we would just deploy the test and the fact that the
239239
infrastructure deployed successfully would be enough of a validation that the test succeeded. In this case though, we ideally
240240
want to validate that the _integration_ connecting `StepFunctions` to the `EventBus` has been setup correctly, and the only
@@ -269,8 +269,8 @@ Not every test requires an assertion. We typically do not need to assert CloudFo
269269
with Encryption, we do not need to assert that Encryption is set on the bucket. We can trust that the CloudFormation behavior works.
270270
Some things you should look for in deciding if the test needs an assertion:
271271

272-
- Integrations between services (i.e. integration libraries like `@aws-cdk/aws-lambda-destinations`, `@aws-cdk/aws-stepfunctions-tasks`, etc)
273-
- Anything that bundles or deploys custom code (i.e. does a Lambda function bundled with `@aws-cdk/aws-lambda-nodejs` still invoke or did we break bundling behavior)
272+
- Integrations between services (i.e. integration libraries like `aws-cdk-lib/aws-lambda-destinations`, `aws-cdk-lib/aws-stepfunctions-tasks`, etc)
273+
- Anything that bundles or deploys custom code (i.e. does a Lambda function bundled with `aws-cdk-lib/aws-lambda-nodejs` still invoke or did we break bundling behavior)
274274
- IAM/Networking connections.
275275
- This one is a bit of a judgement call. Most things do not need assertions, but sometimes we handle complicated configurations involving IAM permissions or
276276
Networking access.

design/aws-ecs/aws-ecs-fargate-capacity-providers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ This new field would be added to the BaseService, not only for better extensibil
103103

104104
Implications Setting Launch Type
105105

106-
Since it can be reasonably assumed that any CapacityProvideStrategies defined on the Service are what the customer intends to use on the Service, the LaunchType will *not* be set on the Service if CapacityProvideStrategies are specified. This is similar to how the LaunchType field is unset if the service uses an external DeploymentController (https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-ecs/lib/base/base-service.ts#L374).
106+
Since it can be reasonably assumed that any CapacityProvideStrategies defined on the Service are what the customer intends to use on the Service, the LaunchType will *not* be set on the Service if CapacityProvideStrategies are specified. This is similar to how the LaunchType field is unset if the service uses an external DeploymentController (https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts#L587).
107107

108108
On the other hand, this intent would not be as obvious with Default Capacity Provider Strategies defined a cluster. A *defaultCapacityProviderStrategy* specified on a cluster is used for any service that does not specify either a launchType or its own CapacityProviderStrategies. From the point of view of the ECS APIs, similar to how custom CapacityProvideStrategies defined on the Service are expected to supersede the defaultCapacityProviderStrategy on a cluster, the expected behavior for an ECS Service that specifies a launchType is for it to also ignore the Cluster’s defaultCapacityProviderStrategy.
109109

110-
However, since the two Service constructs in the CDK (Ec2Service and FargateService) do not support having the launchType field passed in explicitly, it would not possible to infer whether the intent of the customer using one of these Service constructs is to use the implied launchType (currently set under the hood in the service’s constructor (https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-ecs/lib/fargate/fargate-service.ts#L155)) or the defaultCapacityProviderStrategy. For this reason, we will not be adding the defaultCapacityProviderStrategy field on the Cluster construct for this iteration.
110+
However, since the two Service constructs in the CDK (Ec2Service and FargateService) do not support having the launchType field passed in explicitly, it would not possible to infer whether the intent of the customer using one of these Service constructs is to use the implied launchType (currently set under the hood in the service’s constructor (https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-ecs/lib/fargate/fargate-service.ts#L134) or the defaultCapacityProviderStrategy. For this reason, we will not be adding the defaultCapacityProviderStrategy field on the Cluster construct for this iteration.
111111

112112
_*Note*_: Future for support will be dependent on a re-design of the existing Service strategies. This will be treated in v2 of the ECS modules, likely with a single Service L2 construct and deprecation of the Ec2Service and FargateService constructs.
113113

design/aws-ecs/aws-ecs-priv-registry-support.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
To address issue [#1698](https://github.com/aws/aws-cdk/issues/1698), the ECS construct library should provide a way for customers to specify [`repositoryCredentials`](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ContainerDefinition.html#ECS-Type-ContainerDefinition-repositoryCredentials) on their container.
44

5-
Minimally, this would mean adding a new string field on `ContainerDefinition`, however this doesn't provide any added value in terms of logical grouping or resource creation. We can instead modify the existing ECS CDK construct [`ContainerImage`](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-ecs/lib/container-image.ts) so that repository credentials are specified along with the image they're meant to access.
5+
Minimally, this would mean adding a new string field on `ContainerDefinition`, however this doesn't provide any added value in terms of logical grouping or resource creation. We can instead modify the existing ECS CDK construct [`ContainerImage`](https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-ecs/lib/container-image.ts) so that repository credentials are specified along with the image they're meant to access.
66

77
## General approach
88

9-
The [`ecs.ContainerImage`](https://github.com/aws/aws-cdk/blob/main/packages/%40aws-cdk/aws-ecs/lib/container-image.ts) class already includes constructs for 3 types of images:
9+
The [`ecs.ContainerImage`](https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-ecs/lib/container-image.ts) class already includes constructs for 3 types of images:
1010

1111
* DockerHubImage
1212
* EcrImage

docs/DESIGN_GUIDELINES.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ exist in the CDK will be removed in the next CDK major version (CDKv2).
193193

194194
AWS resources are organized into modules based on their AWS service. For
195195
example, the "Bucket" resource, which is offered by the Amazon S3 service will
196-
be available under the **@aws-cdk/aws-s3** module. We will use the “aws-” prefix
196+
be available under the **aws-cdk-lib/aws-s3** module. We will use the “aws-” prefix
197197
for all AWS services, regardless of whether their marketing name uses an
198198
“Amazon” prefix (e.g. “Amazon S3”). Non-AWS services supported by AWS
199199
CloudFormation (like the Alexa::ASK namespace) will be **@aws-cdk/alexa-ask**.
@@ -203,13 +203,13 @@ consistent with the AWS SDKs and AWS CloudFormation _[awslint:module-name]_.
203203

204204
All major versions of an AWS namespace will be mastered in the AWS Construct
205205
Library under the root namespace. For example resources of the **ApiGatewayV2**
206-
namespace will be available under the **@aws-cdk/aws-apigateway** module (and
206+
namespace will be available under the **aws-cdk-lib/aws-apigateway** module (and
207207
not under “v2) _[awslint:module-v2]_.
208208

209209
In some cases, it makes sense to introduce secondary modules for a certain
210210
service (e.g. aws-s3-notifications, aws-lambda-event-sources, etc). The name of
211211
the secondary module will be
212-
**@aws-cdk/aws-xxx-\<secondary-module\>**_[awslint:module-secondary]_.
212+
**aws-cdk-lib/aws-xxx-\<secondary-module\>**_[awslint:module-secondary]_.
213213

214214
Documentation for how to use secondary modules should be in the main module. The
215215
README file should refer users to the central module

packages/@aws-cdk-testing/framework-integ/test/aws-cloudwatch/test/integ.alarm-and-dashboard.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Integration test to deploy some resources, create an alarm on it and create a dashboard.
22
//
3-
// Because literally every other library is going to depend on @aws-cdk/aws-cloudwatch, we drop down
3+
// Because literally every other library is going to depend on aws-cdk-lib/aws-cloudwatch, we drop down
44
// to the very lowest level to create CloudFormation resources by hand, without even generated
55
// library support.
66

packages/@aws-cdk-testing/framework-integ/test/aws-cloudwatch/test/integ.math-alarm-and-dashboard.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Integration test to deploy some resources, create an alarm on it and create a dashboard.
22
//
3-
// Because literally every other library is going to depend on @aws-cdk/aws-cloudwatch, we drop down
3+
// Because literally every other library is going to depend on aws-cdk-lib/aws-cloudwatch, we drop down
44
// to the very lowest level to create CloudFormation resources by hand, without even generated
55
// library support.
66

packages/@aws-cdk-testing/framework-integ/test/aws-codecommit/test/integ.codecommit-events.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const repo = new codecommit.Repository(stack, 'Repo', {
1010
});
1111
const topic = new sns.Topic(stack, 'MyTopic');
1212

13-
// we can't use @aws-cdk/aws-events-targets.SnsTopic here because it will
13+
// we can't use aws-cdk-lib/aws-events-targets.SnsTopic here because it will
1414
// create a cyclic dependency with codebuild, so we just fake it
1515
repo.onReferenceCreated('OnReferenceCreated', {
1616
target: {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-ipv6.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ class EksClusterStack extends Stack {
350350
}
351351

352352
// this test uses both the bottlerocket image and the inf1 instance, which are only supported in these
353-
// regions. see https://github.com/aws/aws-cdk/tree/main/packages/%40aws-cdk/aws-eks#bottlerocket
353+
// regions. see https://github.com/aws/aws-cdk/tree/main/packages/aws-cdk-lib/aws-eks#bottlerocket
354354
// and https://aws.amazon.com/about-aws/whats-new/2019/12/introducing-amazon-ec2-inf1-instances-high-performance-and-the-lowest-cost-machine-learning-inference-in-the-cloud/
355355
const supportedRegions = [
356356
'us-east-1',

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class EksClusterStack extends Stack {
323323
}
324324

325325
// this test uses both the bottlerocket image and the inf1 instance, which are only supported in these
326-
// regions. see https://github.com/aws/aws-cdk/tree/main/packages/%40aws-cdk/aws-eks#bottlerocket
326+
// regions. see https://github.com/aws/aws-cdk/tree/main/packages/aws-cdk-lib/aws-eks#bottlerocket
327327
// and https://aws.amazon.com/about-aws/whats-new/2019/12/introducing-amazon-ec2-inf1-instances-high-performance-and-the-lowest-cost-machine-learning-inference-in-the-cloud/
328328
const supportedRegions = [
329329
'us-east-1',

packages/@aws-cdk/aws-apigatewayv2-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ As an API Gateway API developer, you can create APIs for use in your own client
4444

4545
This module supports features under [API Gateway v2](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_ApiGatewayV2.html)
4646
that lets users set up Websocket and HTTP APIs.
47-
REST APIs can be created using the `@aws-cdk/aws-apigateway` module.
47+
REST APIs can be created using the `aws-cdk-lib/aws-apigateway` module.
4848

4949
## HTTP API
5050

packages/@aws-cdk/aws-iot-actions-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
This library contains integration classes to send data to any number of
1919
supported AWS Services. Instances of these classes should be passed to
20-
`TopicRule` defined in `@aws-cdk/aws-iot`.
20+
`TopicRule` defined in `aws-cdk-lib/aws-iot`.
2121

2222
Currently supported are:
2323

packages/@aws-cdk/aws-iot-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ new iot.TopicRule(this, 'TopicRule', {
7676
});
7777
```
7878

79-
See also [@aws-cdk/aws-iot-actions](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-iot-actions-readme.html) for other actions.
79+
See also [@aws-cdk/aws-iot-actions-alpha](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-iot-actions-alpha-readme.html) for other actions.

packages/@aws-cdk/aws-iotevents-actions-alpha/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<!--END STABILITY BANNER-->
1717

18-
This library contains integration classes to specify actions of state events of Detector Model in `@aws-cdk/aws-iotevents`.
19-
Instances of these classes should be passed to `State` defined in `@aws-cdk/aws-iotevents`
18+
This library contains integration classes to specify actions of state events of Detector Model in `@aws-cdk/aws-iotevents-alpha`.
19+
Instances of these classes should be passed to `State` defined in `@aws-cdk/aws-iotevents-alpha`
2020
You can define built-in actions to use a timer or set a variable, or send data to other AWS resources.
2121

2222
This library contains integration classes to use a timer or set a variable, or send data to other AWS resources.

packages/@aws-cdk/aws-iotevents-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The detector model need a reference to at least one AWS IoT Events input.
2727
AWS IoT Events inputs enable the detector to get MQTT payload values from IoT Core rules.
2828

2929
You can define built-in actions to use a timer or set a variable, or send data to other AWS resources.
30-
See also [@aws-cdk/aws-iotevents-actions](https://docs.aws.amazon.com/cdk/api/v1/docs/aws-iotevents-actions-readme.html) for other actions.
30+
See also [@aws-cdk/aws-iotevents-actions-alpha](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-iotevents-actions-alpha-readme.html) for other actions.
3131

3232
```ts
3333
import * as iotevents from '@aws-cdk/aws-iotevents-alpha';

packages/@aws-cdk/aws-kinesisfirehose-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ Conversely to the above, Kinesis Data Firehose requires permissions in order for
498498
streams to interact with resources that you own. For example, if an S3 bucket is specified
499499
as a destination of a delivery stream, the delivery stream must be granted permissions to
500500
put and get objects from the bucket. When using the built-in AWS service destinations
501-
found in the `@aws-cdk/aws-kinesisfirehose-destinations` module, the CDK grants the
501+
found in the `@aws-cdk/aws-kinesisfirehose-destinations-alpha` module, the CDK grants the
502502
permissions automatically. However, custom or third-party destinations may require custom
503503
permissions. In this case, use the delivery stream as an `IGrantable`, as follows:
504504

packages/@aws-cdk/aws-lambda-go-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ generally fall into two scenarios:
9999
If you are not vendoring then `go build` will be run without `-mod=vendor`
100100
since the default behavior is to download dependencies
101101

102-
All other properties of `lambda.Function` are supported, see also the [AWS Lambda construct library](https://github.com/aws/aws-cdk/tree/main/packages/%40aws-cdk/aws-lambda).
102+
All other properties of `lambda.Function` are supported, see also the [AWS Lambda construct library](https://github.com/aws/aws-cdk/tree/main/packages/aws-cdk-lib/aws-lambda).
103103

104104
## Environment
105105

packages/@aws-cdk/aws-lambda-go-alpha/lib/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface BundlingOptions extends DockerRunOptions {
1515
/**
1616
* A custom bundling Docker image.
1717
*
18-
* @default - use the Docker image provided by @aws-cdk/aws-lambda-go
18+
* @default - use the Docker image provided by @aws-cdk/aws-lambda-go-alpha
1919
*/
2020
readonly dockerImage?: DockerImage;
2121

packages/@aws-cdk/aws-lambda-python-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ new python.PythonFunction(this, 'MyFunction', {
3333
});
3434
```
3535

36-
All other properties of `lambda.Function` are supported, see also the [AWS Lambda construct library](https://github.com/aws/aws-cdk/tree/main/packages/%40aws-cdk/aws-lambda).
36+
All other properties of `lambda.Function` are supported, see also the [AWS Lambda construct library](https://github.com/aws/aws-cdk/tree/main/packages/aws-cdk-lib/aws-lambda).
3737

3838
## Python Layer
3939

packages/@aws-cdk/aws-neptune-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Amazon Neptune is a fast, reliable, fully managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Neptune is a purpose-built, high-performance graph database engine. This engine is optimized for storing billions of relationships and querying the graph with milliseconds latency. Neptune supports the popular graph query languages Apache TinkerPop Gremlin and W3C’s SPARQL, enabling you to build queries that efficiently navigate highly connected datasets.
1919

20-
The `@aws-cdk/aws-neptune` package contains primitives for setting up Neptune database clusters and instances.
20+
The `@aws-cdk/aws-neptune-alpha` package contains primitives for setting up Neptune database clusters and instances.
2121

2222
```ts nofixture
2323
import * as neptune from '@aws-cdk/aws-neptune-alpha';

packages/@aws-cdk/aws-servicecatalogappregistry-alpha/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ enables organizations to create and manage repositories of applications and asso
3030
- [Sharing an application](#sharing-an-application)
3131
- [Sharing an attribute group](#sharing-an-attribute-group)
3232

33-
The `@aws-cdk/aws-servicecatalogappregistry` package contains resources that enable users to automate governance and management of their AWS resources at scale.
33+
The `@aws-cdk/aws-servicecatalogappregistry-alpha` package contains resources that enable users to automate governance and management of their AWS resources at scale.
3434

3535
```ts nofixture
3636
import * as appreg from '@aws-cdk/aws-servicecatalogappregistry-alpha';

packages/aws-cdk-lib/aws-appsync/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AWS AppSync Construct Library
22

33

4-
The `@aws-cdk/aws-appsync` package contains constructs for building flexible
4+
The `aws-cdk-lib/aws-appsync` package contains constructs for building flexible
55
APIs that use GraphQL.
66

77
```ts nofixture
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AWS AutoScaling Common Library
22

33

4-
This is a sister package to `@aws-cdk/aws-autoscaling` and
5-
`@aws-cdk/aws-applicationautoscaling`. It contains shared implementation
4+
This is a sister package to `aws-cdk-lib/aws-autoscaling` and
5+
`aws-cdk-lib/aws-applicationautoscaling`. It contains shared implementation
66
details between them.
77

88
It does not need to be used directly.

0 commit comments

Comments
 (0)