EntityResolution / Client / list_provider_services
list_provider_services¶
- EntityResolution.Client.list_provider_services(**kwargs)¶
Returns a list of all the
ProviderServices
that are available in this Amazon Web Services Region.See also: AWS API Documentation
Request Syntax
response = client.list_provider_services( nextToken='string', maxResults=123, providerName='string' )
- Parameters:
nextToken (string) – The pagination token from the previous API call.
maxResults (integer) – The maximum number of objects returned per page.
providerName (string) – The name of the provider. This name is typically the company name.
- Return type:
dict
- Returns:
Response Syntax
{ 'providerServiceSummaries': [ { 'providerServiceArn': 'string', 'providerName': 'string', 'providerServiceDisplayName': 'string', 'providerServiceName': 'string', 'providerServiceType': 'ASSIGNMENT'|'ID_MAPPING' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
providerServiceSummaries (list) –
A list of
ProviderServices
objects.(dict) –
A list of
ProviderService
objects, each of which contain the fieldsproviderName
,providerServiceArn
,providerServiceName
, andproviderServiceType
.providerServiceArn (string) –
The ARN (Amazon Resource Name) that Entity Resolution generated for the
providerService
.providerName (string) –
The name of the provider. This name is typically the company name.
providerServiceDisplayName (string) –
The display name of the provider service.
providerServiceName (string) –
The name of the product that the provider service provides.
providerServiceType (string) –
The type of provider service.
nextToken (string) –
The pagination token from the previous API call.
Exceptions