Skip to content

Commit

Permalink
fix: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Feb 2, 2024
1 parent 903f332 commit 8d27761
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-efs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const fileSystem = new efs.FileSystem(this, 'MyEfsFileSystem', {
performanceMode: efs.PerformanceMode.GENERAL_PURPOSE, // default
outOfInfrequentAccessPolicy: efs.OutOfInfrequentAccessPolicy.AFTER_1_ACCESS, // files are not transitioned back from (infrequent access) IA to primary storage by default
transitionToArchivePolicy: efs.LifecyclePolicy.AFTER_14_DAYS, // files are not transitioned to Archive by default
replicationOverwriteProtection: true, // Set to false if you want to create a read-only file system for use as a replication destination
replicationOverwriteProtection: ReplicationOverwriteProtection.ENABLED, // Set to `DISABLED` if you want to create a read-only file system for use as a replication destination
});
```

Expand Down
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * as alexa_ask from './alexa-ask';
export * as amzn_sdc from './amzn-sdc';
export * as assertions from './assertions';
export * as assets from './assets';
export * as aws_accessanalyzer from './aws-accessanalyzer';
Expand Down Expand Up @@ -57,6 +58,7 @@ export * as aws_codepipeline_actions from './aws-codepipeline-actions';
export * as aws_codestar from './aws-codestar';
export * as aws_codestarconnections from './aws-codestarconnections';
export * as aws_codestarnotifications from './aws-codestarnotifications';
export * as aws_codetest from './aws-codetest';
export * as aws_cognito from './aws-cognito';
export * as aws_comprehend from './aws-comprehend';
export * as aws_config from './aws-config';
Expand Down
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@
"./.jsii": "./.jsii",
"./.warnings.jsii.js": "./.warnings.jsii.js",
"./alexa-ask": "./alexa-ask/index.js",
"./amzn-sdc": "./amzn-sdc/index.js",
"./assertions": "./assertions/index.js",
"./assertions/lib/helpers-internal": "./assertions/lib/helpers-internal/index.js",
"./assets": "./assets/index.js",
Expand Down Expand Up @@ -268,6 +269,7 @@
"./aws-codestar": "./aws-codestar/index.js",
"./aws-codestarconnections": "./aws-codestarconnections/index.js",
"./aws-codestarnotifications": "./aws-codestarnotifications/index.js",
"./aws-codetest": "./aws-codetest/index.js",
"./aws-cognito": "./aws-cognito/index.js",
"./aws-comprehend": "./aws-comprehend/index.js",
"./aws-config": "./aws-config/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/aws-cdk-lib/scripts/scope-map.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"alexa-ask": [
"Alexa::ASK"
],
"amzn-sdc": [
"AMZN::SDC"
],
"aws-accessanalyzer": [
"AWS::AccessAnalyzer"
],
Expand Down Expand Up @@ -146,6 +149,9 @@
"aws-codestarnotifications": [
"AWS::CodeStarNotifications"
],
"aws-codetest": [
"AWS::CodeTest"
],
"aws-cognito": [
"AWS::Cognito"
],
Expand Down

0 comments on commit 8d27761

Please sign in to comment.