mwaairflow/nested_stacks/project.py [49:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            destination_bucket=bucket,
            cache_control=[
                s3d.CacheControl.from_string(
                    "max-age=0,no-cache,no-store,must-revalidate"
                )
            ],
            sources=[s3d.Source.asset(code_path)],
            retain_on_delete=False,
        )

        codecommitrepo = codecommit.CfnRepository(
            scope=self,
            code={
                "branch_name": "main",
                "s3": {"bucket": bucket.bucket_name, "key": "code.zip"},
            },
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mwaairflow/nested_stacks/provisioning.py [54:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            destination_bucket=bucket,
            cache_control=[
                s3d.CacheControl.from_string(
                    "max-age=0,no-cache,no-store,must-revalidate"
                )
            ],
            sources=[s3d.Source.asset(code_path)],
            retain_on_delete=False,
        )

        codecommitrepo = codecommit.CfnRepository(
            scope=self,
            code={
                "branch_name": "main",
                "s3": {"bucket": bucket.bucket_name, "key": "code.zip"},
            },
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



