AWS DataZone L2 Construct library
Project description
CDK Amazon DataZone Construct Library
CDK Amazon DataZone is an AWS CDK construct library that simplifies the creation and management of Amazon DataZone resources. This library enables developers to automate data governance, data cataloging, and secure data sharing across domains by using familiar infrastructure-as-code practices with AWS CDK.
Features
- Easily create and manage Amazon DataZone components, such as Domains, Projects, and Environments.
- Seamless integration with the AWS CDK ecosystem, allowing users to manage DataZone resources alongside other AWS resources.
- Support for secure resource configurations like KMS encryption, S3 bucket management, and domain-level blueprinting.
Installation
To install this library, use the following npm command:
npm install @cdklabs/cdk-data-zone
Usage Example
Here’s an example of how to use the @cdklabs/cdk-data-zone library in your AWS CDK project:
from aws_cdk import App, RemovalPolicy
from aws_cdk.aws_kms import Key
from aws_cdk.aws_s3 import Bucket, BucketEncryption
app = App()
stack = Stack(app, "TestStack")
# Create an S3 Bucket for the Blueprint
bucket = Bucket(stack, "BlueprintBucket",
enforce_sSL=True,
removal_policy=RemovalPolicy.DESTROY,
auto_delete_objects=True,
encryption=BucketEncryption.S3_MANAGED
)
# Create a DataZone Domain
domain = Domain(stack, "Domain",
name="integration",
encryption_key=Key(stack, "Key", enable_key_rotation=True)
)
# Enable a Blueprint for the Domain
blueprint = domain.enable_blueprint(BlueprintEnvironmentIdentifiers.DEFAULT_DATA_LAKE,
parameters={
"S3Location": f"s3://{bucket.bucketName}"
}
)
# Create a Project within the Domain
project = domain.create_project("test-project",
name="test-project",
glossaries=Glossaries.from_file("./resources/glossaries.json"),
forms=Forms.from_file("./resources/form-metadata.json")
)
# Create an Environment Profile for the Project
environment_profile = EnvironmentProfile(stack, "EnvironmentProfile",
name="dev",
blueprint=blueprint,
project=project
)
# Create an Environment using the Environment Profile
Environment(stack, "environment",
project=project,
name="DEV",
environment_profile=environment_profile
)
app.synth()
Key Features Highlighted
- Domain Creation: Easily create Amazon DataZone Domains with encryption and other security features.
- Project Management: Use Blueprints, Forms, and Glossaries to structure data governance.
- Environment Profiles: Manage different environments within your data projects to ensure proper data governance policies.
Projen for Development
This project leverages Projen for managing development workflows. Projen automates common tasks like dependency management, testing, and versioning.
Getting Started with Development
-
Clone the Repository:
git clone https://github.com/cdklabs/cdk-data-zone.git cd cdk-data-zone
-
Install Dependencies:
npx projen install
-
Run Projen to synthesize files:
npx projen -
Build the Project:
npx projen build
-
Run Tests:
npx projen test
API Reference
Detailed documentation of the available constructs, their properties, and methods is available in the API.md file.
Contributing
Contributions are welcome! Please see the CONTRIBUTING.md guide for more details on how to get involved.
Security policy
Please see the SECURITY.md for more information.
License
This project is licensed under the Apache-2.0 License. See the LICENSE file for more information.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cdk_data_zone-0.0.0.tar.gz.
File metadata
- Download URL: cdk_data_zone-0.0.0.tar.gz
- Upload date:
- Size: 138.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eea3b70e0b7d51470fe0af78f0ed75bf0c0ba2ead6512c02dd2c59acaa1718d6
|
|
| MD5 |
60ae63027942d9623378405598014405
|
|
| BLAKE2b-256 |
5c79c5f7fa803fe418b9758fda10f3cd4d00ae4bafa11d3d0d54a42bd5af6ed5
|
File details
Details for the file cdk_data_zone-0.0.0-py3-none-any.whl.
File metadata
- Download URL: cdk_data_zone-0.0.0-py3-none-any.whl
- Upload date:
- Size: 136.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
438e9bf10d76dfc81f57f87a8668394fda3a93da0cb7c96b0caba43fa0027479
|
|
| MD5 |
e77f9cb04d8d9da265522b2ff98a3ac2
|
|
| BLAKE2b-256 |
a159b57629851d9f735af2495e6a5538880ce083d236c98824e82733eea828b2
|