Skip to content

Commit 116c0e1

Browse files
committed
chore: use HTTPS for AWS documentation links in source comments
Update 48 HTTP links to AWS documentation to use HTTPS across 19 source files in aws-cdk-lib. All links are in @see, @link, or inline comment references and point to docs.aws.amazon.com or aws.amazon.com.
1 parent d12754f commit 116c0e1

File tree

19 files changed

+49
-49
lines changed

19 files changed

+49
-49
lines changed

packages/aws-cdk-lib/aws-apigateway/lib/api-key.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface IApiKey extends IResourceBase, IApiKeyRef {
3737
export interface ApiKeyOptions extends ResourceOptions {
3838
/**
3939
* A name for the API key. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the API key name.
40-
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name
40+
* @link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name
4141
* @default automically generated name
4242
*/
4343
readonly apiKeyName?: string;
@@ -51,7 +51,7 @@ export interface ApiKeyOptions extends ResourceOptions {
5151

5252
/**
5353
* A description of the purpose of the API key.
54-
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description
54+
* @link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description
5555
* @default none
5656
*/
5757
readonly description?: string;
@@ -77,21 +77,21 @@ export interface ApiKeyProps extends ApiKeyOptions {
7777

7878
/**
7979
* An AWS Marketplace customer identifier to use when integrating with the AWS SaaS Marketplace.
80-
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid
80+
* @link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid
8181
* @default none
8282
*/
8383
readonly customerId?: string;
8484

8585
/**
8686
* Indicates whether the API key can be used by clients.
87-
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled
87+
* @link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled
8888
* @default true
8989
*/
9090
readonly enabled?: boolean;
9191

9292
/**
9393
* Specifies whether the key identifier is distinct from the created API key value.
94-
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid
94+
* @link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid
9595
* @default false
9696
*/
9797
readonly generateDistinctId?: boolean;

packages/aws-cdk-lib/aws-apigateway/lib/integration.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export interface IntegrationOptions {
9696
* { "application/json": "{ \"statusCode\": 200 }" }
9797
* ```
9898
*
99-
* @see http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html
99+
* @see https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html
100100
*/
101101
readonly requestTemplates?: { [contentType: string]: string };
102102

@@ -415,7 +415,7 @@ export interface IntegrationResponse {
415415
* pre-encode these values based on the destination specified in the
416416
* request.
417417
*
418-
* @see http://docs.aws.amazon.com/apigateway/latest/developerguide/request-response-data-mappings.html
418+
* @see https://docs.aws.amazon.com/apigateway/latest/developerguide/request-response-data-mappings.html
419419
*/
420420
readonly responseParameters?: { [destination: string]: string };
421421

@@ -424,7 +424,7 @@ export interface IntegrationResponse {
424424
* Specify templates as key-value pairs, with a content type as the key and
425425
* a template as the value.
426426
*
427-
* @see http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html
427+
* @see https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html
428428
*/
429429
readonly responseTemplates?: { [contentType: string]: string };
430430
}

packages/aws-cdk-lib/aws-codebuild/lib/file-location.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { IProject } from './project';
88
export interface FileSystemConfig {
99
/**
1010
* File system location wrapper property.
11-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html
11+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfilesystemlocation.html
1212
*/
1313
readonly location: CfnProject.ProjectFileSystemLocationProperty;
1414
}

packages/aws-cdk-lib/aws-codebuild/lib/source.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface SourceConfig {
2323

2424
/**
2525
* `AWS::CodeBuild::Project.SourceVersion`
26-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion
26+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-sourceversion
2727
* @default the latest version
2828
*/
2929
readonly sourceVersion?: string;

packages/aws-cdk-lib/aws-dynamodb/lib/table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export interface TableOptions extends SchemaOptions {
324324
/**
325325
* Specify values to pre-warm you DynamoDB Table
326326
* Warm Throughput feature is not available for Global Table replicas using the `Table` construct. To enable Warm Throughput, use the `TableV2` construct instead.
327-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-warmthroughput
327+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-warmthroughput
328328
* @default - warm throughput is not configured
329329
*/
330330
readonly warmThroughput?: WarmThroughput;

packages/aws-cdk-lib/aws-ec2/lib/instance.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ export interface InstanceProps {
374374
* Whether "Detailed Monitoring" is enabled for this instance
375375
* Keep in mind that Detailed Monitoring results in extra charges
376376
*
377-
* @see http://aws.amazon.com/cloudwatch/pricing/
377+
* @see https://aws.amazon.com/cloudwatch/pricing/
378378
* @default - false
379379
*/
380380
readonly detailedMonitoring?: boolean;
@@ -431,7 +431,7 @@ export interface InstanceProps {
431431
* Alternatively, if you set InstanceInitiatedShutdownBehavior to terminate, you can terminate the instance
432432
* by running the shutdown command from the instance.
433433
*
434-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-instance.html#cfn-ec2-instance-disableapitermination
434+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-instance.html#cfn-ec2-instance-disableapitermination
435435
*
436436
* @default false
437437
*/

packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export interface LaunchTemplateProps {
234234
*
235235
* The version description must be maximum 255 characters long.
236236
*
237-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-versiondescription
237+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-versiondescription
238238
*
239239
* @default - No description
240240
*/

packages/aws-cdk-lib/aws-efs/lib/efs-file-system.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import type { FileSystemReference, IFileSystemRef } from '../../interfaces/gener
1717
* EFS Lifecycle Policy, if a file is not accessed for given days, it will move to EFS Infrequent Access
1818
* or Archive storage.
1919
*
20-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-lifecyclepolicies
20+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-lifecyclepolicies
2121
*/
2222
export enum LifecyclePolicy {
2323

packages/aws-cdk-lib/aws-eks/lib/cluster.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2672,7 +2672,7 @@ export interface RemoteNodeNetwork {
26722672
/**
26732673
* Specifies the list of remote node CIDRs.
26742674
*
2675-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenodenetwork.html#cfn-eks-cluster-remotenodenetwork-cidrs
2675+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenodenetwork.html#cfn-eks-cluster-remotenodenetwork-cidrs
26762676
*/
26772677
readonly cidrs: string[];
26782678
}
@@ -2684,7 +2684,7 @@ export interface RemotePodNetwork {
26842684
/**
26852685
* Specifies the list of remote pod CIDRs.
26862686
*
2687-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotepodnetwork.html#cfn-eks-cluster-remotepodnetwork-cidrs
2687+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotepodnetwork.html#cfn-eks-cluster-remotepodnetwork-cidrs
26882688
*/
26892689
readonly cidrs: string[];
26902690
}

packages/aws-cdk-lib/aws-events/lib/event-bus.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export interface EventBusProps {
160160
*
161161
* The description can be up to 512 characters long.
162162
*
163-
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-description
163+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-description
164164
*
165165
* @default - no description
166166
*/

0 commit comments

Comments
 (0)