def valid_config()

in traffic_mirroring/app_helper.py [0:0]


def valid_config(config):
    if not valid_source_type('vpcs', 'vpcId', config):
        return False
    if not valid_source_type('subnets', 'subnetId', config):
        return False
    if not valid_source_type('tags', 'tagList', config):
        return False

    return True