Skip to main content

rule_based_matches

Creates, updates, deletes, gets or lists a rule_based_matches resource.

Overview

Namerule_based_matches
TypeResource
Idaws.customer_profiles.rule_based_matches

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
match_idstringThe list of MatchIds for the given domain.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_rule_based_matchesselectdomain_name, regionnext-token, max-resultsReturns a set of MatchIds that belong to the given domain.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
domain_namestringThe unique name of the domain.
regionstringAWS region (default: us-east-1)
max-resultsintegerThe maximum number of MatchIds returned per page.
next-tokenstringThe pagination token from the previous ListRuleBasedMatches API call.

SELECT examples

Returns a set of MatchIds that belong to the given domain.

SELECT
match_id
FROM aws.customer_profiles.rule_based_matches
WHERE domain_name = '{{ domain_name }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;