Skip to content

List Provider Services

entityresolution_list_provider_services R Documentation

Returns a list of all the ProviderServices that are available in this Amazon Web Services Region

Description

Returns a list of all the ProviderServices that are available in this Amazon Web Services Region.

Usage

entityresolution_list_provider_services(maxResults, nextToken,
  providerName)

Arguments

maxResults

The maximum number of objects returned per page.

nextToken

The pagination token from the previous API call.

providerName

The name of the provider. This name is typically the company name.

Value

A list with the following syntax:

list(
  nextToken = "string",
  providerServiceSummaries = list(
    list(
      providerName = "string",
      providerServiceArn = "string",
      providerServiceDisplayName = "string",
      providerServiceName = "string",
      providerServiceType = "ASSIGNMENT"|"ID_MAPPING"
    )
  )
)

Request syntax

svc$list_provider_services(
  maxResults = 123,
  nextToken = "string",
  providerName = "string"
)