├── docs ├── .gitignore ├── release │ ├── 0.1.0 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── cli │ │ │ │ │ ├── tests.doctree │ │ │ │ │ ├── aws_ddk.doctree │ │ │ │ │ ├── modules.doctree │ │ │ │ │ ├── tests.unit.doctree │ │ │ │ │ ├── aws_ddk.commands.doctree │ │ │ │ │ └── aws_ddk.services.doctree │ │ │ │ ├── core │ │ │ │ │ ├── tests.doctree │ │ │ │ │ ├── modules.doctree │ │ │ │ │ ├── tests.unit.doctree │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ ├── aws_ddk_core.base.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.doctree │ │ │ │ │ ├── aws_ddk_core.config.doctree │ │ │ │ │ ├── aws_ddk_core.stages.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.doctree │ │ │ │ │ ├── aws_ddk_core.resources.doctree │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ │ ├── aws_ddk_core.pipelines.Stage.doctree │ │ │ │ │ │ ├── aws_ddk_core.pipelines.Pipeline.doctree │ │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ │ └── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ └── environment.pickle │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ ├── modules.rst.txt │ │ │ │ │ ├── aws_ddk.rst.txt │ │ │ │ │ ├── tests.rst.txt │ │ │ │ │ └── tests.unit.rst.txt │ │ │ │ ├── core │ │ │ │ │ ├── modules.rst.txt │ │ │ │ │ ├── tests.rst.txt │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ │ ├── aws_ddk_core.pipelines.Stage.rst.txt │ │ │ │ │ │ └── aws_ddk_core.pipelines.Pipeline.rst.txt │ │ │ │ │ ├── aws_ddk_core.base.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.rst.txt │ │ │ │ │ ├── aws_ddk_core.stages.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.rst.txt │ │ │ │ └── index.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.1.3 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.Stage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.Pipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ └── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ ├── aws_ddk_core.pipelines.Stage.rst.txt │ │ │ │ │ └── aws_ddk_core.pipelines.Pipeline.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.2.0 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataPipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ ├── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ │ └── aws_ddk_core.resources.StepFunctionsFactory.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.rst.txt │ │ │ │ │ └── aws_ddk_core.config.Config.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.3.0 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AthenaSQLStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataPipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.KinesisToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ ├── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AppFlowIngestionStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.doctree │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.4.0 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AthenaSQLStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DMSS3ToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataPipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.KinesisToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ ├── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.StateMachineStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AppFlowIngestionStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.doctree │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.5.1 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AthenaSQLStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DMSS3ToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataPipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.KinesisToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DataBrewFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.StateMachineStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AppFlowIngestionStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DataBrewTransformStage.doctree │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DataBrewFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.6.0 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AthenaSQLStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DMSS3ToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataPipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.KinesisToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DataBrewFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.StateMachineStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AppFlowIngestionStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DataBrewTransformStage.doctree │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DataBrewFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.6.1 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ └── aws_ddk_core.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ └── index.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── 0.6.2 │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── environment.pickle │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.doctree │ │ │ │ └── core │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.config.Config.doctree │ │ │ │ │ ├── aws_ddk_core.base.BaseStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AthenaSQLStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DMSS3ToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.S3EventStage.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.CICDPipelineStack.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.DataPipeline.doctree │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.KinesisToS3Stage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.SqsToLambdaStage.doctree │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.doctree │ │ │ │ │ ├── aws_ddk_core.resources.DataBrewFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.GlueTransformStage.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.StateMachineStage.doctree │ │ │ │ │ ├── aws_ddk_core.stages.AppFlowIngestionStage.doctree │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.doctree │ │ │ │ │ ├── aws_ddk_core.stages.DataBrewTransformStage.doctree │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.doctree │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ └── aws_ddk.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ └── core │ │ │ │ │ └── stubs │ │ │ │ │ ├── aws_ddk_core.resources.S3Factory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KMSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.GlueFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DataBrewFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.JSONConfigStrategy.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.SQSFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.LambdaFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.StepFunctionsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.KinesisStreamsFactory.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.Config.rst.txt │ │ │ │ │ ├── aws_ddk_core.resources.DMSFactory.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt │ │ │ └── .buildinfo │ │ ├── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ │ └── index.markdown │ ├── beta │ │ ├── api │ │ │ ├── _static │ │ │ │ ├── scripts │ │ │ │ │ ├── furo-extensions.js │ │ │ │ │ └── furo.js.LICENSE.txt │ │ │ │ ├── file.png │ │ │ │ ├── plus.png │ │ │ │ ├── minus.png │ │ │ │ └── documentation_options.js │ │ │ ├── objects.inv │ │ │ ├── .doctrees │ │ │ │ ├── index.doctree │ │ │ │ ├── cli │ │ │ │ │ ├── aws_ddk.doctree │ │ │ │ │ ├── modules.doctree │ │ │ │ │ ├── tests.doctree │ │ │ │ │ ├── tests.unit.doctree │ │ │ │ │ ├── aws_ddk.commands.doctree │ │ │ │ │ └── aws_ddk.services.doctree │ │ │ │ ├── core │ │ │ │ │ ├── tests.doctree │ │ │ │ │ ├── modules.doctree │ │ │ │ │ ├── tests.unit.doctree │ │ │ │ │ ├── aws_ddk_core.doctree │ │ │ │ │ ├── aws_ddk_core.base.doctree │ │ │ │ │ ├── aws_ddk_core.cicd.doctree │ │ │ │ │ ├── aws_ddk_core.config.doctree │ │ │ │ │ ├── aws_ddk_core.stages.doctree │ │ │ │ │ ├── aws_ddk_core.pipelines.doctree │ │ │ │ │ └── aws_ddk_core.resources.doctree │ │ │ │ └── environment.pickle │ │ │ ├── _sources │ │ │ │ ├── cli │ │ │ │ │ ├── modules.rst.txt │ │ │ │ │ ├── tests.rst.txt │ │ │ │ │ └── tests.unit.rst.txt │ │ │ │ ├── core │ │ │ │ │ ├── modules.rst.txt │ │ │ │ │ ├── tests.rst.txt │ │ │ │ │ ├── aws_ddk_core.base.rst.txt │ │ │ │ │ ├── aws_ddk_core.rst.txt │ │ │ │ │ ├── aws_ddk_core.config.rst.txt │ │ │ │ │ ├── aws_ddk_core.stages.rst.txt │ │ │ │ │ └── aws_ddk_core.resources.rst.txt │ │ │ │ └── index.rst.txt │ │ │ └── .buildinfo │ │ └── how-to │ │ │ └── spend-first-hour.markdown │ ├── 1.0.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.0.1 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.1.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.2.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.3.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.3.1 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.4.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.4.1 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── latest │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── stable │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.0.0-beta.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.0.0-beta.1 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ ├── 1.0.0-rc.0 │ │ └── how-to │ │ │ ├── index.markdown │ │ │ └── spend-first-hour.markdown │ └── index.markdown ├── favicon.ico ├── img │ ├── s3-to-sns.png │ ├── pip-install.gif │ ├── stack-synthesizer.png │ ├── ddk-bootstrap-stack.png │ ├── multi-account-stages.png │ └── multi-account-pipeline.png ├── _plugins │ └── jekyll-tabs │ │ └── lib │ │ ├── jekyll-tabs │ │ └── version.rb │ │ └── template.erb ├── _layouts │ └── how-to.html ├── _data │ └── how-to-categories.yaml ├── releases.markdown ├── 404.html ├── _includes │ └── how-to-index.html └── about.markdown ├── integ ├── release │ └── dags │ │ ├── bar.py │ │ └── foo.py └── pr │ └── src │ ├── glue_script.py │ └── lambda_write_s3 │ └── lambda_function.py ├── test ├── mwaa │ ├── dags │ │ ├── bar.py │ │ └── foo.py │ ├── requirements.txt │ └── plugins │ │ └── plugins.zip ├── mock_config │ ├── test-config-invalid.json │ └── test-config.yaml ├── s3-factory.test.ts └── sns-factory.test.ts ├── .github └── pull_request_template.md ├── src ├── base │ └── index.ts ├── config │ └── index.ts ├── cicd │ └── index.ts ├── pipelines │ └── index.ts ├── index.ts ├── core │ ├── index.ts │ └── kms-factory.ts └── stages │ └── index.ts ├── NOTICE ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── .npmignore └── .projen └── files.json /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /integ/release/dags/bar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integ/release/dags/foo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mwaa/dags/bar.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /test/mwaa/dags/foo.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /test/mwaa/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integ/pr/src/glue_script.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /test/mwaa/plugins/plugins.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Fixes # -------------------------------------------------------------------------------- /src/base/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./stack"; 2 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/release/beta/api/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./configurator"; 2 | -------------------------------------------------------------------------------- /test/mock_config/test-config-invalid.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar", 3 | } -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /src/cicd/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./actions"; 2 | export * from "./pipelines"; 3 | -------------------------------------------------------------------------------- /src/pipelines/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./stage"; 2 | export * from "./pipelines"; 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". 2 | -------------------------------------------------------------------------------- /docs/img/s3-to-sns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/img/s3-to-sns.png -------------------------------------------------------------------------------- /docs/img/pip-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/img/pip-install.gif -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "all", 3 | "printWidth": 120, 4 | "overrides": [] 5 | } 6 | -------------------------------------------------------------------------------- /docs/img/stack-synthesizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/img/stack-synthesizer.png -------------------------------------------------------------------------------- /docs/img/ddk-bootstrap-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/img/ddk-bootstrap-stack.png -------------------------------------------------------------------------------- /docs/img/multi-account-stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/img/multi-account-stages.png -------------------------------------------------------------------------------- /docs/release/beta/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/objects.inv -------------------------------------------------------------------------------- /docs/img/multi-account-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/img/multi-account-pipeline.png -------------------------------------------------------------------------------- /docs/release/0.1.0/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.1.3/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.2.0/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.3.0/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.4.0/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.5.1/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.6.0/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.6.1/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/objects.inv -------------------------------------------------------------------------------- /docs/release/0.6.2/api/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/objects.inv -------------------------------------------------------------------------------- /docs/_plugins/jekyll-tabs/lib/jekyll-tabs/version.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | module Tabs 3 | VERSION = "1.1.1" 4 | end 5 | end -------------------------------------------------------------------------------- /docs/release/beta/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/beta/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/_static/file.png -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/_static/plus.png -------------------------------------------------------------------------------- /docs/release/beta/api/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/_static/minus.png -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/cli/modules.rst.txt: -------------------------------------------------------------------------------- 1 | cli 2 | === 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | aws_ddk 8 | tests 9 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.6.1/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/cli/modules.rst.txt: -------------------------------------------------------------------------------- 1 | cli 2 | === 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | aws_ddk 8 | tests 9 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/cli/tests.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/cli/tests.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/tests.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/tests.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/modules.rst.txt: -------------------------------------------------------------------------------- 1 | core 2 | ==== 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | aws_ddk_core 8 | tests 9 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.6.1/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/cli/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/cli/modules.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/cli/tests.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/cli/tests.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/tests.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/tests.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/modules.rst.txt: -------------------------------------------------------------------------------- 1 | core 2 | ==== 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | aws_ddk_core 8 | tests 9 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/cli/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/cli/modules.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/modules.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.6.1/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/cli/aws_ddk.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/cli/aws_ddk.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/modules.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/cli/tests.unit.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/cli/tests.unit.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/tests.unit.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/tests.unit.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/cli/tests.unit.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/cli/tests.unit.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/tests.unit.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/tests.unit.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.6.1/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.1/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/cli/aws_ddk.commands.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/cli/aws_ddk.commands.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/cli/aws_ddk.services.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/cli/aws_ddk.services.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/cli/aws_ddk.commands.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/cli/aws_ddk.commands.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/cli/aws_ddk.services.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/cli/aws_ddk.services.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.base.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.base.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.cicd.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.cicd.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/cli/aws_ddk.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk package 2 | ====================== 3 | 4 | .. click:: aws_ddk.__main__:cli 5 | :prog: ddk 6 | :nested: full -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.base.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.base.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.cicd.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.cicd.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.config.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.stages.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.stages.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.config.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.stages.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.stages.doctree -------------------------------------------------------------------------------- /docs/_layouts/how-to.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |
6 | ← Index 7 |
8 | {{ content }} 9 |
10 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.pipelines.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.pipelines.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.resources.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/aws_ddk_core.resources.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.pipelines.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.pipelines.doctree -------------------------------------------------------------------------------- /docs/release/beta/api/.doctrees/core/aws_ddk_core.resources.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/beta/api/.doctrees/core/aws_ddk_core.resources.doctree -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./base"; 2 | export * from "./cicd"; 3 | export * from "./config"; 4 | export * from "./pipelines"; 5 | export * from "./stages"; 6 | export * from "./core"; 7 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.config.Config.doctree -------------------------------------------------------------------------------- /docs/_data/how-to-categories.yaml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | category: Introduction 3 | 4 | - name: Intermediate Topics 5 | category: Intermediate 6 | 7 | - name: Advanced Topics 8 | category: Advanced -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.base.BaseStack.doctree -------------------------------------------------------------------------------- /docs/release/beta/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: default 4 | tags: how-to 5 | category: Introduction 6 | --- 7 | 8 | Its going to be cool -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Pipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Pipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Pipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.pipelines.Pipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.DMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.GlueFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.KMSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.S3Factory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.SQSFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.AthenaSQLStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.DMSS3ToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.S3EventStage.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.cicd.CICDPipelineStack.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.DataPipeline.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.LambdaFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.KinesisToS3Stage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.SqsToLambdaStage.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.1.3/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.DataBrewFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.DataBrewFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.DataBrewFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.DataBrewFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.config.JSONConfigStrategy.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.DataBrewFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.DataBrewFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.GlueTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.pipelines.StateMachineStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.AppFlowIngestionStage.doctree -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.2.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.DataBrewTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.stages.DataBrewTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.DataBrewTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.stages.DataBrewTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.DataBrewTransformStage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.stages.DataBrewTransformStage.doctree -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.3.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.4.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.5.1/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.0/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/aws-ddk/HEAD/docs/release/0.6.2/api/.doctrees/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.doctree -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /docs/release/beta/api/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * gumshoejs v5.1.2 (patched by @pradyunsg) 3 | * A simple, framework-agnostic scrollspy script. 4 | * (c) 2019 Chris Ferdinandi 5 | * MIT License 6 | * http://github.com/cferdinandi/gumshoe 7 | */ 8 | -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./emr-serverless-cluster"; 2 | export * from "./mwaa-environment"; 3 | export * from "./glue-factory"; 4 | export * from "./kms-factory"; 5 | export * from "./s3-factory"; 6 | export * from "./sns-factory"; 7 | export * from "./utils"; 8 | -------------------------------------------------------------------------------- /docs/release/beta/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: a9da8ecc4cb67629e6cc3e305f7c205c 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.6.1/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: c20583e119e6f825984f0c4d825358c0 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/cli/tests.rst.txt: -------------------------------------------------------------------------------- 1 | tests package 2 | ============= 3 | 4 | Subpackages 5 | ----------- 6 | 7 | .. toctree:: 8 | :maxdepth: 4 9 | 10 | tests.unit 11 | 12 | Module contents 13 | --------------- 14 | 15 | .. automodule:: tests 16 | :members: 17 | :undoc-members: 18 | :show-inheritance: 19 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/cli/tests.rst.txt: -------------------------------------------------------------------------------- 1 | tests package 2 | ============= 3 | 4 | Subpackages 5 | ----------- 6 | 7 | .. toctree:: 8 | :maxdepth: 4 9 | 10 | tests.unit 11 | 12 | Module contents 13 | --------------- 14 | 15 | .. automodule:: tests 16 | :members: 17 | :undoc-members: 18 | :show-inheritance: 19 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/tests.rst.txt: -------------------------------------------------------------------------------- 1 | tests package 2 | ============= 3 | 4 | Subpackages 5 | ----------- 6 | 7 | .. toctree:: 8 | :maxdepth: 4 9 | 10 | tests.unit 11 | 12 | Module contents 13 | --------------- 14 | 15 | .. automodule:: tests 16 | :members: 17 | :undoc-members: 18 | :show-inheritance: 19 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/tests.rst.txt: -------------------------------------------------------------------------------- 1 | tests package 2 | ============= 3 | 4 | Subpackages 5 | ----------- 6 | 7 | .. toctree:: 8 | :maxdepth: 4 9 | 10 | tests.unit 11 | 12 | Module contents 13 | --------------- 14 | 15 | .. automodule:: tests 16 | :members: 17 | :undoc-members: 18 | :show-inheritance: 19 | -------------------------------------------------------------------------------- /docs/release/0.1.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.1.3/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.2.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.3.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.4.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.5.1/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.6.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.6.1/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.6.2/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.0.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.0.1/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.1.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.2.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.3.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.3.1/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.4.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.4.1/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/latest/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/stable/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.0.0-beta.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.0.0-beta.1/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/1.0.0-rc.0/how-to/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | AWS DDK API Documentation 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Packages: 7 | 8 | cli/aws_ddk.rst 9 | core/aws_ddk_core.rst 10 | 11 | 12 | Indices and tables 13 | ================== 14 | 15 | * :ref:`genindex` 16 | * :ref:`modindex` 17 | * :ref:`search` 18 | -------------------------------------------------------------------------------- /integ/pr/src/lambda_write_s3/lambda_function.py: -------------------------------------------------------------------------------- 1 | import boto3 2 | import json 3 | import os 4 | 5 | 6 | sqs_client = boto3.client("sqs") 7 | queue_url = os.environ["QUEUE_URL"] 8 | 9 | 10 | def lambda_handler(event, context): 11 | print(json.dumps(event)) 12 | sqs_client.send_message( 13 | QueueUrl=queue_url, 14 | MessageBody=event["Records"][0]["body"], 15 | ) 16 | -------------------------------------------------------------------------------- /docs/releases.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | ## Releases 6 | Find the documentation for all releases of AWS DDK 7 | 8 | 18 | -------------------------------------------------------------------------------- /src/stages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./appflow-ingestion"; 2 | export * from "./athena-sql"; 3 | export * from "./databrew-transform"; 4 | export * from "./emr-serverless-job"; 5 | export * from "./glue-transform"; 6 | export * from "./kinesis-s3"; 7 | export * from "./mwaa-trigger-dags"; 8 | export * from "./redshift-data-api"; 9 | export * from "./s3-event"; 10 | export * from "./sns-lambda"; 11 | export * from "./sqs-lambda"; 12 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.1.0', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.1.3', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.2.0', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.3.0', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.4.0', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.5.1', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.6.0', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.6.1/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.6.1', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '0.6.2', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/beta/api/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: 'beta', 4 | LANGUAGE: 'None', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '.txt', 11 | NAVIGATION_WITH_KEYS: false 12 | }; -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/cli/tests.unit.rst.txt: -------------------------------------------------------------------------------- 1 | tests.unit package 2 | ================== 3 | 4 | Submodules 5 | ---------- 6 | 7 | tests.unit.test\_cli module 8 | --------------------------- 9 | 10 | .. automodule:: tests.unit.test_cli 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: tests.unit 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/cli/tests.unit.rst.txt: -------------------------------------------------------------------------------- 1 | tests.unit package 2 | ================== 3 | 4 | Submodules 5 | ---------- 6 | 7 | tests.unit.test\_cli module 8 | --------------------------- 9 | 10 | .. automodule:: tests.unit.test_cli 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: tests.unit 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.1.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.1.3/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.2.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.3.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.4.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.6.1/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.S3Factory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.S3Factory 2 | ================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: S3Factory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~S3Factory.__init__ 18 | ~S3Factory.bucket 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.0.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.0.1/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.1.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.2.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.3.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.3.1/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.4.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.4.1/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.KMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KMSFactory.__init__ 18 | ~KMSFactory.key 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/1.0.0-rc.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/latest/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/stable/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.GlueFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.GlueFactory 2 | ==================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: GlueFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~GlueFactory.__init__ 18 | ~GlueFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.GlueFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.GlueFactory 2 | ==================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: GlueFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~GlueFactory.__init__ 18 | ~GlueFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.GlueFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.GlueFactory 2 | ==================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: GlueFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~GlueFactory.__init__ 18 | ~GlueFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.GlueFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.GlueFactory 2 | ==================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: GlueFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~GlueFactory.__init__ 18 | ~GlueFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.GlueFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.GlueFactory 2 | ==================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: GlueFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~GlueFactory.__init__ 18 | ~GlueFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/1.0.0-beta.0/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/1.0.0-beta.1/how-to/spend-first-hour.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to spend your first hour with the AWS DDK 3 | layout: how-to 4 | tags: how-to 5 | order: 2 6 | category: Introduction 7 | --- 8 | 9 | ## How to spend your first hour with the AWS DDK 10 | The best way to learn about the AWS DDK is to follow our [workshop]({{ site.workshop_url }}). It will take about an hour, and introduce you to the AWS DDK CLI, AWS DDK Core and how you can use these components to build your first pipeline. -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/aws_ddk_core.base.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.base package 2 | =========================== 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.base.stack module 8 | -------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.base.stack 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.base 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/aws_ddk_core.base.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.base package 2 | =========================== 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.base.stack module 8 | -------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.base.stack 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.base 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/aws_ddk_core.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core package 2 | ====================== 3 | 4 | Subpackages 5 | ----------- 6 | 7 | .. toctree:: 8 | :maxdepth: 4 9 | 10 | aws_ddk_core.base 11 | aws_ddk_core.cicd 12 | aws_ddk_core.config 13 | aws_ddk_core.pipelines 14 | aws_ddk_core.resources 15 | aws_ddk_core.stages 16 | 17 | Module contents 18 | --------------- 19 | 20 | .. automodule:: aws_ddk_core 21 | :members: 22 | :undoc-members: 23 | :show-inheritance: 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.DataBrewFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DataBrewFactory 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DataBrewFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DataBrewFactory.__init__ 18 | ~DataBrewFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.DataBrewFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DataBrewFactory 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DataBrewFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DataBrewFactory.__init__ 18 | ~DataBrewFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.DataBrewFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DataBrewFactory 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DataBrewFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DataBrewFactory.__init__ 18 | ~DataBrewFactory.job 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/aws_ddk_core.config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config package 2 | ============================= 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.config.config module 8 | ----------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.config.config 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.config 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/aws_ddk_core.config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config package 2 | ============================= 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.config.config module 8 | ----------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.config.config 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.config 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /test/mock_config/test-config.yaml: -------------------------------------------------------------------------------- 1 | tags: 2 | global:foo: bar 3 | environments: 4 | dev: 5 | account: '222222222222' 6 | region: us-east-1 7 | resources: 8 | AWS::Lambda::Function: 9 | MemorySize: 128 10 | Runtime: python3.8 11 | tags: 12 | CostCenter: '2014' 13 | prod: 14 | account: '222222222222' 15 | region: us-east-1 16 | resources: 17 | AWS::Lambda::Function: 18 | MemorySize: 1024 19 | Runtime: python3.8 20 | tags: 21 | CostCenter: '2015' -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | layout: default 4 | --- 5 | 6 | 19 | 20 |
21 |

404

22 |

Page not found :(

23 |

The requested page could not be found.

24 |
25 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.config.JSONConfigStrategy.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.JSONConfigStrategy 2 | ======================================== 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: JSONConfigStrategy 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~JSONConfigStrategy.__init__ 18 | ~JSONConfigStrategy.get_config 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/aws_ddk_core.stages.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.stages package 2 | ============================= 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.stages.sqs\_lambda module 8 | ---------------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.stages.sqs_lambda 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.stages 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.1.0/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.1.3/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.2.0/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.3.0/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.4.0/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.5.1/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.6.0/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.6.1/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.SQSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.SQSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: SQSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~SQSFactory.__init__ 18 | ~SQSFactory.apply_secure_queue_policy 19 | ~SQSFactory.queue 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.6.2/index.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | layout: default 4 | --- 5 | {% assign version = page.dir | split: "/" %} 6 | 7 | # {{ version[2] |capitalize }} Release Documentation 8 | 9 | ## How-To Guides 10 | 11 | These guides range from simple, task-based guides to more complex instructions 12 | {% include how-to-index.html %} 13 | 14 | ## API Documentation 15 | 16 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/aws_ddk_core.stages.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.stages package 2 | ============================= 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.stages.sqs\_lambda module 8 | ---------------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.stages.sqs_lambda 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.stages 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". 2 | /.projen/ 3 | /test-reports/ 4 | junit.xml 5 | /coverage/ 6 | permissions-backup.acl 7 | /dist/changelog.md 8 | /dist/version.txt 9 | /.mergify.yml 10 | /.prettierignore 11 | /.prettierrc.json 12 | /test/ 13 | /tsconfig.dev.json 14 | /src/ 15 | !/lib/ 16 | !/lib/**/*.js 17 | !/lib/**/*.d.ts 18 | dist 19 | /tsconfig.json 20 | /.github/ 21 | /.vscode/ 22 | /.idea/ 23 | /.projenrc.js 24 | tsconfig.tsbuildinfo 25 | /.eslintrc.json 26 | !.jsii 27 | /.gitattributes 28 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/aws_ddk_core.resources.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources package 2 | ================================ 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.resources.commons module 8 | --------------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.resources.commons 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.resources 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/core/aws_ddk_core.resources.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources package 2 | ================================ 3 | 4 | Submodules 5 | ---------- 6 | 7 | aws\_ddk\_core.resources.commons module 8 | --------------------------------------- 9 | 10 | .. automodule:: aws_ddk_core.resources.commons 11 | :members: 12 | :undoc-members: 13 | :show-inheritance: 14 | 15 | Module contents 16 | --------------- 17 | 18 | .. automodule:: aws_ddk_core.resources 19 | :members: 20 | :undoc-members: 21 | :show-inheritance: 22 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.StepFunctionsFactory 2 | ============================================= 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: StepFunctionsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~StepFunctionsFactory.__init__ 18 | ~StepFunctionsFactory.state_machine 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.StepFunctionsFactory 2 | ============================================= 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: StepFunctionsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~StepFunctionsFactory.__init__ 18 | ~StepFunctionsFactory.state_machine 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.StepFunctionsFactory 2 | ============================================= 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: StepFunctionsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~StepFunctionsFactory.__init__ 18 | ~StepFunctionsFactory.state_machine 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.StepFunctionsFactory 2 | ============================================= 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: StepFunctionsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~StepFunctionsFactory.__init__ 18 | ~StepFunctionsFactory.state_machine 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.StepFunctionsFactory 2 | ============================================= 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: StepFunctionsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~StepFunctionsFactory.__init__ 18 | ~StepFunctionsFactory.state_machine 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.LambdaFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.LambdaFactory 2 | ====================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: LambdaFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~LambdaFactory.__init__ 18 | ~LambdaFactory.add_vpc_permissions 19 | ~LambdaFactory.function 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.StepFunctionsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.StepFunctionsFactory 2 | ============================================= 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: StepFunctionsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~StepFunctionsFactory.__init__ 18 | ~StepFunctionsFactory.state_machine 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisStreamsFactory 2 | ============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisStreamsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisStreamsFactory.__init__ 18 | ~KinesisStreamsFactory.data_stream 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisStreamsFactory 2 | ============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisStreamsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisStreamsFactory.__init__ 18 | ~KinesisStreamsFactory.data_stream 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisStreamsFactory 2 | ============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisStreamsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisStreamsFactory.__init__ 18 | ~KinesisStreamsFactory.data_stream 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisStreamsFactory 2 | ============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisStreamsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisStreamsFactory.__init__ 18 | ~KinesisStreamsFactory.data_stream 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.KinesisStreamsFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisStreamsFactory 2 | ============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisStreamsFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisStreamsFactory.__init__ 18 | ~KinesisStreamsFactory.data_stream 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/_plugins/jekyll-tabs/lib/template.erb: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.2.0/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.config.Config.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.config.Config 2 | ============================ 3 | 4 | .. currentmodule:: aws_ddk_core.config 5 | 6 | .. autoclass:: Config 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Config.__init__ 18 | ~Config.get_cdk_version 19 | ~Config.get_env 20 | ~Config.get_env_config 21 | ~Config.get_resource_config 22 | ~Config.get_tags 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/core/kms-factory.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from "aws-cdk-lib"; 2 | import * as kms from "aws-cdk-lib/aws-kms"; 3 | import { Construct } from "constructs"; 4 | 5 | import { overrideProps } from "./utils"; 6 | 7 | export class KmsFactory { 8 | public static key(scope: Construct, id: string, props: kms.KeyProps) { 9 | const defaultProps: Partial = { 10 | enableKeyRotation: true, 11 | pendingWindow: cdk.Duration.days(30), 12 | }; 13 | 14 | const mergedProps = overrideProps(defaultProps, props); 15 | return new kms.Key(scope, id, mergedProps); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/s3-factory.test.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from "aws-cdk-lib"; 2 | import { Template } from "aws-cdk-lib/assertions"; 3 | 4 | import { S3Factory } from "../src"; 5 | 6 | test("S3 Bucket", () => { 7 | const stack = new cdk.Stack(); 8 | S3Factory.bucket(stack, "Test Bucket", {}); 9 | const template = Template.fromStack(stack); 10 | template.hasResourceProperties("AWS::S3::Bucket", { 11 | BucketEncryption: { 12 | ServerSideEncryptionConfiguration: [{ ServerSideEncryptionByDefault: { SSEAlgorithm: "AES256" } }], 13 | }, 14 | PublicAccessBlockConfiguration: {}, 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /.projen/files.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | ".eslintrc.json", 4 | ".gitattributes", 5 | ".github/pull_request_template.md", 6 | ".github/workflows/build.yml", 7 | ".github/workflows/pull-request-lint.yml", 8 | ".github/workflows/upgrade-main.yml", 9 | ".gitignore", 10 | ".mergify.yml", 11 | ".prettierignore", 12 | ".prettierrc.json", 13 | ".projen/deps.json", 14 | ".projen/files.json", 15 | ".projen/tasks.json", 16 | "LICENSE", 17 | "tsconfig.dev.json" 18 | ], 19 | "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"." 20 | } 21 | -------------------------------------------------------------------------------- /docs/_includes/how-to-index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/about.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: About 4 | permalink: /about/ 5 | --- 6 | 7 | This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) 8 | 9 | You can find the source code for Minima at GitHub: 10 | [jekyll][jekyll-organization] / 11 | [minima](https://github.com/jekyll/minima) 12 | 13 | You can find the source code for Jekyll at GitHub: 14 | [jekyll][jekyll-organization] / 15 | [jekyll](https://github.com/jekyll/jekyll) 16 | 17 | [jekyll-organization]: https://github.com/jekyll 18 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.DMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DMSFactory.__init__ 18 | ~DMSFactory.endpoint 19 | ~DMSFactory.endpoint_settings_s3 20 | ~DMSFactory.replication_instance 21 | ~DMSFactory.replication_task 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.DMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DMSFactory.__init__ 18 | ~DMSFactory.endpoint 19 | ~DMSFactory.endpoint_settings_s3 20 | ~DMSFactory.replication_instance 21 | ~DMSFactory.replication_task 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.DMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DMSFactory.__init__ 18 | ~DMSFactory.endpoint 19 | ~DMSFactory.endpoint_settings_s3 20 | ~DMSFactory.replication_instance 21 | ~DMSFactory.replication_task 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.DMSFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.DMSFactory 2 | =================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: DMSFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~DMSFactory.__init__ 18 | ~DMSFactory.endpoint 19 | ~DMSFactory.endpoint_settings_s3 20 | ~DMSFactory.replication_instance 21 | ~DMSFactory.replication_task 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/release/0.3.0/api/_sources/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisFirehoseFactory 2 | =============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisFirehoseFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisFirehoseFactory.__init__ 18 | ~KinesisFirehoseFactory.delivery_stream 19 | ~KinesisFirehoseFactory.s3_destination 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.4.0/api/_sources/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisFirehoseFactory 2 | =============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisFirehoseFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisFirehoseFactory.__init__ 18 | ~KinesisFirehoseFactory.delivery_stream 19 | ~KinesisFirehoseFactory.s3_destination 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.5.1/api/_sources/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisFirehoseFactory 2 | =============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisFirehoseFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisFirehoseFactory.__init__ 18 | ~KinesisFirehoseFactory.delivery_stream 19 | ~KinesisFirehoseFactory.s3_destination 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.6.0/api/_sources/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisFirehoseFactory 2 | =============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisFirehoseFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisFirehoseFactory.__init__ 18 | ~KinesisFirehoseFactory.delivery_stream 19 | ~KinesisFirehoseFactory.s3_destination 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/0.6.2/api/_sources/core/stubs/aws_ddk_core.resources.KinesisFirehoseFactory.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.resources.KinesisFirehoseFactory 2 | =============================================== 3 | 4 | .. currentmodule:: aws_ddk_core.resources 5 | 6 | .. autoclass:: KinesisFirehoseFactory 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~KinesisFirehoseFactory.__init__ 18 | ~KinesisFirehoseFactory.delivery_stream 19 | ~KinesisFirehoseFactory.s3_destination 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/release/beta/api/_sources/index.rst.txt: -------------------------------------------------------------------------------- 1 | .. Github Pages Test documentation master file, created by 2 | sphinx-quickstart on Thu Feb 3 08:35:10 2022. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | AWS DDK API Documentation 7 | ============================================= 8 | 9 | .. toctree:: 10 | :maxdepth: 2 11 | :caption: Contents: 12 | 13 | core/aws_ddk_core.rst 14 | cli/aws_ddk.rst 15 | 16 | 17 | 18 | Indices and tables 19 | ================== 20 | 21 | * :ref:`genindex` 22 | * :ref:`modindex` 23 | * :ref:`search` 24 | -------------------------------------------------------------------------------- /test/sns-factory.test.ts: -------------------------------------------------------------------------------- 1 | import * as cdk from "aws-cdk-lib"; 2 | import { Match, Template } from "aws-cdk-lib/assertions"; 3 | import * as sns from "aws-cdk-lib/aws-sns"; 4 | 5 | import { SnsFactory } from "../src"; 6 | 7 | test("Sns Topic Policy", () => { 8 | const stack = new cdk.Stack(); 9 | const topic = new sns.Topic(stack, "my topic"); 10 | SnsFactory.secureSnsTopicPolicy(topic); 11 | const template = Template.fromStack(stack); 12 | template.hasResourceProperties("AWS::SNS::TopicPolicy", { 13 | PolicyDocument: { 14 | Statement: Match.arrayWith([]), 15 | Version: "2012-10-17", 16 | }, 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.pipelines.Stage.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.pipelines.Stage 2 | ============================== 3 | 4 | .. currentmodule:: aws_ddk_core.pipelines 5 | 6 | .. autoclass:: Stage 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Stage.__init__ 18 | ~Stage.get_event_pattern 19 | ~Stage.get_targets 20 | ~Stage.is_construct 21 | ~Stage.to_string 22 | 23 | 24 | 25 | 26 | 27 | .. rubric:: Attributes 28 | 29 | .. autosummary:: 30 | 31 | ~Stage.node 32 | 33 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.pipelines.Stage.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.pipelines.Stage 2 | ============================== 3 | 4 | .. currentmodule:: aws_ddk_core.pipelines 5 | 6 | .. autoclass:: Stage 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Stage.__init__ 18 | ~Stage.get_event_pattern 19 | ~Stage.get_targets 20 | ~Stage.is_construct 21 | ~Stage.to_string 22 | 23 | 24 | 25 | 26 | 27 | .. rubric:: Attributes 28 | 29 | .. autosummary:: 30 | 31 | ~Stage.node 32 | 33 | -------------------------------------------------------------------------------- /docs/release/0.1.0/api/_sources/core/stubs/aws_ddk_core.pipelines.Pipeline.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.pipelines.Pipeline 2 | ================================= 3 | 4 | .. currentmodule:: aws_ddk_core.pipelines 5 | 6 | .. autoclass:: Pipeline 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Pipeline.__init__ 18 | ~Pipeline.add_rule 19 | ~Pipeline.add_stage 20 | ~Pipeline.is_construct 21 | ~Pipeline.to_string 22 | 23 | 24 | 25 | 26 | 27 | .. rubric:: Attributes 28 | 29 | .. autosummary:: 30 | 31 | ~Pipeline.node 32 | 33 | -------------------------------------------------------------------------------- /docs/release/0.1.3/api/_sources/core/stubs/aws_ddk_core.pipelines.Pipeline.rst.txt: -------------------------------------------------------------------------------- 1 | aws\_ddk\_core.pipelines.Pipeline 2 | ================================= 3 | 4 | .. currentmodule:: aws_ddk_core.pipelines 5 | 6 | .. autoclass:: Pipeline 7 | :members: 8 | 9 | 10 | .. automethod:: __init__ 11 | 12 | 13 | .. rubric:: Methods 14 | 15 | .. autosummary:: 16 | 17 | ~Pipeline.__init__ 18 | ~Pipeline.add_rule 19 | ~Pipeline.add_stage 20 | ~Pipeline.is_construct 21 | ~Pipeline.to_string 22 | 23 | 24 | 25 | 26 | 27 | .. rubric:: Attributes 28 | 29 | .. autosummary:: 30 | 31 | ~Pipeline.node 32 | 33 | --------------------------------------------------------------------------------