def get_cfdistro_config()

in lambda/lambda_function.py [0:0]


def get_cfdistro_config(distroid):
    client = boto3.client('cloudfront')
    response = client.get_distribution_config(
        Id = distroid
        )

    return response