Skip to main content

A stack that destroys itself after a given time (ttl)

Project description

cloudcomponents Logo

@cloudcomponents/cdk-temp-stack

Build Status cdkdx typescript python

A stack that destroys itself after a given time (ttl)

Install

TypeScript/JavaScript:

npm i @cloudcomponents/cdk-temp-stack

Python:

pip install cloudcomponents.cdk-temp-stack

How to use

# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
~/usr/bin / envnode

from source_map_support.register import
from aws_cdk.core import App, Duration

from ..temp_infra_stack import TempInfraStack

app = App()

TempInfraStack(app, "TempInfraStack",
    env=Environment(
        region=process.env.DEFAULT_REGION,
        account=process.env.CDK_DEFAULT_ACCOUNT
    ),
    ttl=Duration.minutes(10)
)

# temp-infra-stack.ts

from aws_cdk.core import Construct
from aws_cdk.aws_ec2 import Vpc
from cloudcomponents.cdk_temp_stack import TempStack, TempStackProps

class TempInfraStack(TempStack):
    def __init__(self, scope, id, *, ttl, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None):
        super().__init__(scope, id, ttl=ttl, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection)

        Vpc(self, "VPC")

TimeToLive Construct

Alternatively, you can also add the TimeToLive construct to your stack

# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
# your stack

from aws_cdk.core import Construct, Stack, StackProps, Duration
from cloudcomponents.cdk_temp_stack import TimeToLive

class YourStack(Stack):
    def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None):
        super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection)

        TimeToLive(self, "TimeToLive",
            ttl=Duration.minutes(10)
        )

API Reference

See API.md.

Example

See more complete examples.

License

MIT

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

cloudcomponents.cdk-temp-stack-1.0.10.tar.gz (21.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cloudcomponents.cdk_temp_stack-1.0.10-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file cloudcomponents.cdk-temp-stack-1.0.10.tar.gz.

File metadata

  • Download URL: cloudcomponents.cdk-temp-stack-1.0.10.tar.gz
  • Upload date:
  • Size: 21.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for cloudcomponents.cdk-temp-stack-1.0.10.tar.gz
Algorithm Hash digest
SHA256 4ebd2b945a76407b0c9bed3b1a70c4a271a90cbb9e9a05ba9ab581df5a788539
MD5 405f5fc99c72b6e286ae193bca275f8c
BLAKE2b-256 fcb0656829b85c878aa8e222bde57aecf5bb0e25cd9d8537f9d0b6c596e37eee

See more details on using hashes here.

File details

Details for the file cloudcomponents.cdk_temp_stack-1.0.10-py3-none-any.whl.

File metadata

  • Download URL: cloudcomponents.cdk_temp_stack-1.0.10-py3-none-any.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for cloudcomponents.cdk_temp_stack-1.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 9950bf1c2460bddf954408f52306e5cdce71ab9ba7e7b12db641bb617917290e
MD5 633cdd4201f0bd6ac5e62cf288ba1861
BLAKE2b-256 1c1524421c09127abb1c1f8197d3b749156d03d73767f28ff065bcc50169eba9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page