def execute()

in filter_aws.py [0:0]


  def execute(self, listing, response):
    """Apply filter.

    Args:
      listing: data returned from aws api.
      response: relevant data returned to caller.
    """
    if (listing.service in ('rds', 'neptune', 'docdb')
        and listing.operation in 'DescribeDBClusterParameterGroups'):
      response['DBClusterParameterGroups'] = [
          group for group in response['DBClusterParameterGroups']
          if not group['DBClusterParameterGroupName'].startswith('default.')
      ]