def create_parameter_group()

in configurations/RedshiftConfigTestingLambda.py [0:0]


def create_parameter_group(client, parameter_group_name):
    try:
        client.create_cluster_parameter_group(
            ParameterGroupName=parameter_group_name,
            ParameterGroupFamily='redshift-1.0',
            Description='redshift cluster parameter group'
        )
    except be.ClientError as e:
        if e.response['Error']['Code'] == 'ClusterParameterGroupAlreadyExists':
            print(e.response['Error']['Code'])
        else:
            raise
    return 'initiated'