Skip to content

Get Provider Service

entityresolution_get_provider_service R Documentation

Returns the ProviderService of a given name

Description

Returns the ProviderService of a given name.

Usage

entityresolution_get_provider_service(providerName, providerServiceName)

Arguments

providerName

[required] The name of the provider. This name is typically the company name.

providerServiceName

[required] The ARN (Amazon Resource Name) of the product that the provider service provides.

Value

A list with the following syntax:

list(
  anonymizedOutput = TRUE|FALSE,
  providerComponentSchema = list(
    providerSchemaAttributes = list(
      list(
        fieldName = "string",
        hashing = TRUE|FALSE,
        subType = "string",
        type = "NAME"|"NAME_FIRST"|"NAME_MIDDLE"|"NAME_LAST"|"ADDRESS"|"ADDRESS_STREET1"|"ADDRESS_STREET2"|"ADDRESS_STREET3"|"ADDRESS_CITY"|"ADDRESS_STATE"|"ADDRESS_COUNTRY"|"ADDRESS_POSTALCODE"|"PHONE"|"PHONE_NUMBER"|"PHONE_COUNTRYCODE"|"EMAIL_ADDRESS"|"UNIQUE_ID"|"DATE"|"STRING"|"PROVIDER_ID"
      )
    ),
    schemas = list(
      list(
        "string"
      )
    )
  ),
  providerConfigurationDefinition = list(),
  providerEndpointConfiguration = list(
    marketplaceConfiguration = list(
      assetId = "string",
      dataSetId = "string",
      listingId = "string",
      revisionId = "string"
    )
  ),
  providerEntityOutputDefinition = list(),
  providerIdNameSpaceConfiguration = list(
    description = "string",
    providerSourceConfigurationDefinition = list(),
    providerTargetConfigurationDefinition = list()
  ),
  providerIntermediateDataAccessConfiguration = list(
    awsAccountIds = list(
      "string"
    ),
    requiredBucketActions = list(
      "string"
    )
  ),
  providerJobConfiguration = list(),
  providerName = "string",
  providerServiceArn = "string",
  providerServiceDisplayName = "string",
  providerServiceName = "string",
  providerServiceType = "ASSIGNMENT"|"ID_MAPPING"
)

Request syntax

svc$get_provider_service(
  providerName = "string",
  providerServiceName = "string"
)