Backup CodeCommit repositories to S3
Project description
@cloudcomponents/cdk-codecommit-backup
Backup CodeCommit repositories to S3
Install
TypeScript/JavaScript:
npm i @cloudcomponents/cdk-codecommit-backup
Python:
pip install cloudcomponents.cdk-codecommit-backup
How to use
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
from aws_cdk.core import Construct, Stack, StackProps, Duration
from aws_cdk.aws_codecommit import Repository
from aws_cdk.aws_events import Schedule
from aws_cdk.aws_events_targets import SnsTopic
from aws_cdk.aws_sns import Topic
from aws_cdk.aws_sns_subscriptions import EmailSubscription
from cloudcomponents.cdk_codecommit_backup import BackupBucket, S3CodeCommitBackup
class CodeCommitBackupStack(Stack):
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None, analyticsReporting=None):
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting)
repository = Repository.from_repository_name(self, "Repository", process.env.REPOSITORY_NAME)
backup_bucket = BackupBucket(self, "BackupBuckt",
retention_period=Duration.days(90)
)
# The following example runs a task every day at 4am
backup = S3CodeCommitBackup(self, "S3CodeCommitBackup",
backup_bucket=backup_bucket,
repository=repository,
schedule=Schedule.cron(
minute="0",
hour="4"
)
)
backup_topic = Topic(self, "BackupTopic")
backup_topic.add_subscription(
EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL))
backup.on_backup_started("started",
target=SnsTopic(backup_topic)
)
backup.on_backup_succeeded("succeeded",
target=SnsTopic(backup_topic)
)
backup.on_backup_failed("failed",
target=SnsTopic(backup_topic)
)
API Reference
See API.md.
Example
See more complete examples.
License
Project details
Release history Release notifications | RSS feed
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
Close
Hashes for cloudcomponents.cdk-codecommit-backup-1.30.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | df1dab4990bae8e25c3d98370be255b0266686b84c5e0232123d2252ed393585 |
|
MD5 | 7a89642ddf50f0ee1874d07c9f9f93af |
|
BLAKE2b-256 | a80e413b278adf85911df4a2402a41f9c28d7c4c53b24eeca6334ef0fa8e8d0b |
Close
Hashes for cloudcomponents.cdk_codecommit_backup-1.30.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a191389dc3b8d03ca7908a2ef1a58c7038a6d3a4039578ff06e8995e96d3413 |
|
MD5 | ba5458b08a674cae911445366849d608 |
|
BLAKE2b-256 | f9defb1fbf76f9f07c2808e9d6c33df882a73ed8718a7f4a45ecd1dae2796ec2 |