@aws-mdaa/dms-constructs 1.2.0
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.
- package/.jsii +8790 -0
- package/README.md +15 -0
- package/lib/endpoint.d.ts +2538 -0
- package/lib/endpoint.js +64 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.js +25 -0
- package/lib/replication_instance.d.ts +64 -0
- package/lib/replication_instance.js +55 -0
- package/lib/utils.d.ts +5 -0
- package/lib/utils.js +13 -0
- package/package.json +77 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Construct Overview
|
|
2
|
+
|
|
3
|
+
Opinionated L2 constructs for DMS.
|
|
4
|
+
|
|
5
|
+
## Security/Compliance
|
|
6
|
+
|
|
7
|
+
### DMS Endpoint
|
|
8
|
+
* Enforce Endpoint Name
|
|
9
|
+
* Enforce use of Secrets for all endpoint credentials
|
|
10
|
+
* Enforce KMS CMK encryption of S3 Endpoint
|
|
11
|
+
|
|
12
|
+
## DMS Replication Instance
|
|
13
|
+
* Enforce Replication Instance Name
|
|
14
|
+
* Enforce KMS CMK encryption of instance
|
|
15
|
+
* Enforce non-public accessibility
|