cdk_constructs/metric_streamer_construct.py [31:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            code=aws_lambda.Code.from_asset(
                path='.',
                exclude=['cdk.out'],
                bundling={
                    # pylint: disable=no-member 
                    # bundling_docker_image is there.
                    'image': aws_lambda.Runtime.PYTHON_3_6.bundling_docker_image,
                    'command': [
                        'bash',
                        '-c',
                        'cp -r dataquality/ /asset-output/ && cp -r lambda/ /asset-output/ && cp -r definitions/ /asset-output/ && cp -r accounts/ /asset-output/'
                    ]
                }
            ),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cdk_constructs/sla_parse_construct.py [26:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            code=aws_lambda.Code.from_asset(
                path='.',
                exclude=['cdk.out'],
                bundling={
                    # pylint: disable=no-member 
                    # bundling_docker_image is there.
                    'image': aws_lambda.Runtime.PYTHON_3_6.bundling_docker_image,
                    'command': [
                        'bash',
                        '-c',
                        'cp -r dataquality/ /asset-output/ && cp -r lambda/ /asset-output/ && cp -r definitions/ /asset-output/ && cp -r accounts/ /asset-output/'
                    ]
                }
            ),
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



