import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetProviderServiceInput, GetProviderServiceOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetProviderServiceCommand}. */ export interface GetProviderServiceCommandInput extends GetProviderServiceInput { } /** * @public * * The output of {@link GetProviderServiceCommand}. */ export interface GetProviderServiceCommandOutput extends GetProviderServiceOutput, __MetadataBearer { } declare const GetProviderServiceCommand_base: { new (input: GetProviderServiceCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetProviderServiceCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the ProviderService of a given name.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EntityResolutionClient, GetProviderServiceCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import * // const { EntityResolutionClient, GetProviderServiceCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import * // import type { EntityResolutionClientConfig } from "@aws-sdk/client-entityresolution"; * const config = {}; // type is EntityResolutionClientConfig * const client = new EntityResolutionClient(config); * const input = { // GetProviderServiceInput * providerName: "STRING_VALUE", // required * providerServiceName: "STRING_VALUE", // required * }; * const command = new GetProviderServiceCommand(input); * const response = await client.send(command); * // { // GetProviderServiceOutput * // providerName: "STRING_VALUE", // required * // providerServiceName: "STRING_VALUE", // required * // providerServiceDisplayName: "STRING_VALUE", // required * // providerServiceType: "ASSIGNMENT" || "ID_MAPPING", // required * // providerServiceArn: "STRING_VALUE", // required * // providerConfigurationDefinition: "DOCUMENT_VALUE", * // providerIdNameSpaceConfiguration: { // ProviderIdNameSpaceConfiguration * // description: "STRING_VALUE", * // providerTargetConfigurationDefinition: "DOCUMENT_VALUE", * // providerSourceConfigurationDefinition: "DOCUMENT_VALUE", * // }, * // providerJobConfiguration: "DOCUMENT_VALUE", * // providerEndpointConfiguration: { // ProviderEndpointConfiguration Union: only one key present * // marketplaceConfiguration: { // ProviderMarketplaceConfiguration * // dataSetId: "STRING_VALUE", // required * // revisionId: "STRING_VALUE", // required * // assetId: "STRING_VALUE", // required * // listingId: "STRING_VALUE", // required * // }, * // }, * // anonymizedOutput: true || false, // required * // providerEntityOutputDefinition: "DOCUMENT_VALUE", // required * // providerIntermediateDataAccessConfiguration: { // ProviderIntermediateDataAccessConfiguration * // awsAccountIds: [ // AwsAccountIdList * // "STRING_VALUE", * // ], * // requiredBucketActions: [ // RequiredBucketActionsList * // "STRING_VALUE", * // ], * // }, * // providerComponentSchema: { // ProviderComponentSchema * // schemas: [ // Schemas * // [ // SchemaList * // "STRING_VALUE", * // ], * // ], * // providerSchemaAttributes: [ // ProviderSchemaAttributes * // { // ProviderSchemaAttribute * // fieldName: "STRING_VALUE", // required * // 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", // required * // subType: "STRING_VALUE", * // hashing: true || false, * // }, * // ], * // }, * // }; * * ``` * * @param GetProviderServiceCommandInput - {@link GetProviderServiceCommandInput} * @returns {@link GetProviderServiceCommandOutput} * @see {@link GetProviderServiceCommandInput} for command's `input` shape. * @see {@link GetProviderServiceCommandOutput} for command's `response` shape. * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

This exception occurs when there is an internal failure in the Entity Resolution service.

* * @throws {@link ResourceNotFoundException} (client fault) *

The resource couldn't be found.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by Entity Resolution.

* * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* * * @public */ export declare class GetProviderServiceCommand extends GetProviderServiceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetProviderServiceInput; output: GetProviderServiceOutput; }; sdk: { input: GetProviderServiceCommandInput; output: GetProviderServiceCommandOutput; }; }; }