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(
providerName = "string",
providerServiceName = "string",
providerServiceDisplayName = "string",
providerServiceType = "ASSIGNMENT"|"ID_MAPPING",
providerServiceArn = "string",
providerConfigurationDefinition = list(),
providerIdNameSpaceConfiguration = list(
description = "string",
providerTargetConfigurationDefinition = list(),
providerSourceConfigurationDefinition = list()
),
providerJobConfiguration = list(),
providerEndpointConfiguration = list(
marketplaceConfiguration = list(
dataSetId = "string",
revisionId = "string",
assetId = "string",
listingId = "string"
)
),
anonymizedOutput = TRUE|FALSE,
providerEntityOutputDefinition = list(),
providerIntermediateDataAccessConfiguration = list(
awsAccountIds = list(
"string"
),
requiredBucketActions = list(
"string"
)
),
providerComponentSchema = list(
schemas = list(
list(
"string"
)
),
providerSchemaAttributes = list(
list(
fieldName = "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"|"IPV4"|"IPV6"|"MAID",
subType = "string",
hashing = TRUE|FALSE
)
)
)
)
Request syntax¶
svc$get_provider_service(
providerName = "string",
providerServiceName = "string"
)