{
  "version": "2.0",
  "service": "<p>Welcome to the <i>Entity Resolution API Reference</i>.</p> <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities that enable developers and analysts at advertising and marketing companies to build an accurate and complete view of their consumers.</p> <p> With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address, and phone number. This is true even when these records have incomplete or conflicting identifiers. For example, Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.</p> <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the <a href=\"https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html\">Entity Resolution User Guide</a>.</p>",
  "operations": {
    "CreateIdMappingWorkflow": "<p>Creates an <code>IdMappingWorkflow</code> object which stores the configuration of the data processing job to be run. Each <code>IdMappingWorkflow</code> must have a unique workflow name. To modify an existing workflow, use the <code>UpdateIdMappingWorkflow</code> API.</p>",
    "CreateMatchingWorkflow": "<p>Creates a <code>MatchingWorkflow</code> object which stores the configuration of the data processing job to be run. It is important to note that there should not be a pre-existing <code>MatchingWorkflow</code> with the same name. To modify an existing workflow, utilize the <code>UpdateMatchingWorkflow</code> API.</p>",
    "CreateSchemaMapping": "<p>Creates a schema mapping, which defines the schema of the input customer records table. The <code>SchemaMapping</code> also provides Entity Resolution with some metadata about the table, such as the attribute types of the columns and which columns to match on.</p>",
    "DeleteIdMappingWorkflow": "<p>Deletes the <code>IdMappingWorkflow</code> with a given name. This operation will succeed even if a workflow with the given name does not exist.</p>",
    "DeleteMatchingWorkflow": "<p>Deletes the <code>MatchingWorkflow</code> with a given name. This operation will succeed even if a workflow with the given name does not exist.</p>",
    "DeleteSchemaMapping": "<p>Deletes the <code>SchemaMapping</code> with a given name. This operation will succeed even if a schema with the given name does not exist. This operation will fail if there is a <code>MatchingWorkflow</code> object that references the <code>SchemaMapping</code> in the workflow's <code>InputSourceConfig</code>.</p>",
    "GetIdMappingJob": "<p>Gets the status, metrics, and errors (if there are any) that are associated with a job.</p>",
    "GetIdMappingWorkflow": "<p>Returns the <code>IdMappingWorkflow</code> with a given name, if it exists.</p>",
    "GetMatchId": "<p>Returns the corresponding Match ID of a customer record if the record has been processed.</p>",
    "GetMatchingJob": "<p>Gets the status, metrics, and errors (if there are any) that are associated with a job.</p>",
    "GetMatchingWorkflow": "<p>Returns the <code>MatchingWorkflow</code> with a given name, if it exists.</p>",
    "GetProviderService": "<p>Returns the <code>ProviderService</code> of a given name.</p>",
    "GetSchemaMapping": "<p>Returns the SchemaMapping of a given name.</p>",
    "ListIdMappingJobs": "<p>Lists all ID mapping jobs for a given workflow.</p>",
    "ListIdMappingWorkflows": "<p>Returns a list of all the <code>IdMappingWorkflows</code> that have been created for an Amazon Web Services account.</p>",
    "ListMatchingJobs": "<p>Lists all jobs for a given workflow.</p>",
    "ListMatchingWorkflows": "<p>Returns a list of all the <code>MatchingWorkflows</code> that have been created for an Amazon Web Services account.</p>",
    "ListProviderServices": "<p>Returns a list of all the <code>ProviderServices</code> that are available in this Amazon Web Services Region.</p>",
    "ListSchemaMappings": "<p>Returns a list of all the <code>SchemaMappings</code> that have been created for an Amazon Web Services account.</p>",
    "ListTagsForResource": "<p>Displays the tags associated with an Entity Resolution resource. In Entity Resolution, <code>SchemaMapping</code>, and <code>MatchingWorkflow</code> can be tagged.</p>",
    "StartIdMappingJob": "<p>Starts the <code>IdMappingJob</code> of a workflow. The workflow must have previously been created using the <code>CreateIdMappingWorkflow</code> endpoint.</p>",
    "StartMatchingJob": "<p>Starts the <code>MatchingJob</code> of a workflow. The workflow must have previously been created using the <code>CreateMatchingWorkflow</code> endpoint.</p>",
    "TagResource": "<p>Assigns one or more tags (key-value pairs) to the specified Entity Resolution resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. In Entity Resolution, <code>SchemaMapping</code> and <code>MatchingWorkflow</code> can be tagged. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the <code>TagResource</code> action with a resource that already has tags. If you specify a new tag key, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag.</p>",
    "UntagResource": "<p>Removes one or more tags from the specified Entity Resolution resource. In Entity Resolution, <code>SchemaMapping</code>, and <code>MatchingWorkflow</code> can be tagged.</p>",
    "UpdateIdMappingWorkflow": "<p>Updates an existing <code>IdMappingWorkflow</code>. This method is identical to <code>CreateIdMappingWorkflow</code>, except it uses an HTTP <code>PUT</code> request instead of a <code>POST</code> request, and the <code>IdMappingWorkflow</code> must already exist for the method to succeed.</p>",
    "UpdateMatchingWorkflow": "<p>Updates an existing <code>MatchingWorkflow</code>. This method is identical to <code>CreateMatchingWorkflow</code>, except it uses an HTTP <code>PUT</code> request instead of a <code>POST</code> request, and the <code>MatchingWorkflow</code> must already exist for the method to succeed.</p>",
    "UpdateSchemaMapping": "<p>Updates a schema mapping.</p> <note> <p>A schema is immutable if it is being used by a workflow. Therefore, you can't update a schema mapping if it's associated with a workflow. </p> </note>"
  },
  "shapes": {
    "AccessDeniedException": {
      "base": "<p>You do not have sufficient access to perform this action. <code>HTTP Status Code: 403</code> </p>",
      "refs": {
      }
    },
    "AttributeMatchingModel": {
      "base": null,
      "refs": {
        "RuleBasedProperties$attributeMatchingModel": "<p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or <code>MANY_TO_MANY</code> as the AttributeMatchingModel. When choosing <code>MANY_TO_MANY</code>, the system can match attributes across the sub-types of an attribute type. For example, if the value of the <code>Email</code> field of Profile A and the value of <code>BusinessEmail</code> field of Profile B matches, the two profiles are matched on the <code>Email</code> type. When choosing <code>ONE_TO_ONE</code> ,the system can only match if the sub-types are exact matches. For example, only when the value of the <code>Email</code> field of Profile A and the value of the <code>Email</code> field of Profile B matches, the two profiles are matched on the <code>Email</code> type.</p>"
      }
    },
    "AttributeName": {
      "base": null,
      "refs": {
        "OutputAttribute$name": "<p>A name of a column to be written to the output. This must be an <code>InputField</code> name in the schema mapping.</p>",
        "RuleMatchingKeysList$member": null,
        "SchemaInputAttribute$fieldName": "<p>A string containing the field name.</p>",
        "SchemaInputAttribute$groupName": "<p>Instruct Entity Resolution to combine several columns into a unified column with the identical attribute type. For example, when working with columns such as first_name, middle_name, and last_name, assigning them a common <code>GroupName</code> will prompt Entity Resolution to concatenate them into a single value.</p>",
        "SchemaInputAttribute$matchKey": "<p>A key that allows grouping of multiple input attributes into a unified matching group. For example, let's consider a scenario where the source table contains various addresses, such as <code>business_address</code> and <code>shipping_address</code>. By assigning the <code>MatchKey</code> <i>Address</i> to both attributes, Entity Resolution will match records across these fields to create a consolidated matching group. If no <code>MatchKey</code> is specified for a column, it won't be utilized for matching purposes but will still be included in the output table.</p>",
        "SchemaInputAttribute$subType": "<p>The subtype of the attribute, selected from a list of values.</p>"
      }
    },
    "AwsAccountId": {
      "base": null,
      "refs": {
        "AwsAccountIdList$member": null
      }
    },
    "AwsAccountIdList": {
      "base": null,
      "refs": {
        "ProviderIntermediateDataAccessConfiguration$awsAccountIds": "<p>The Amazon Web Services account that provider can use to read or write data into the customer's intermediate S3 bucket.</p>"
      }
    },
    "Boolean": {
      "base": null,
      "refs": {
        "GetProviderServiceOutput$anonymizedOutput": "<p>Specifies whether output data from the provider is anonymized. A value of <code>TRUE</code> means the output will be anonymized and you can't relate the data that comes back from the provider to the identifying input. A value of <code>FALSE</code> means the output won't be anonymized and you can relate the data that comes back from the provider to your source data. </p>",
        "GetSchemaMappingOutput$hasWorkflows": "<p>Specifies whether the schema mapping has been applied to a workflow.</p>",
        "InputSource$applyNormalization": "<p>Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.</p>",
        "OutputAttribute$hashed": "<p>Enables the ability to hash the column values in the output.</p>",
        "OutputSource$applyNormalization": "<p>Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.</p>",
        "SchemaMappingSummary$hasWorkflows": "<p>Specifies whether the schema mapping has been applied to a workflow.</p>"
      }
    },
    "ConflictException": {
      "base": "<p>The request could not be processed because of conflict in the current state of the resource. Example: Workflow already exists, Schema already exists, Workflow is currently running, etc. <code>HTTP Status Code: 400</code> </p>",
      "refs": {
      }
    },
    "CreateIdMappingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "CreateIdMappingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "CreateMatchingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "CreateMatchingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "CreateSchemaMappingInput": {
      "base": null,
      "refs": {
      }
    },
    "CreateSchemaMappingOutput": {
      "base": null,
      "refs": {
      }
    },
    "DeleteIdMappingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "DeleteIdMappingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "DeleteMatchingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "DeleteMatchingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "DeleteSchemaMappingInput": {
      "base": null,
      "refs": {
      }
    },
    "DeleteSchemaMappingOutput": {
      "base": null,
      "refs": {
      }
    },
    "Description": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowInput$description": "<p>A description of the workflow.</p>",
        "CreateIdMappingWorkflowOutput$description": "<p>A description of the workflow.</p>",
        "CreateMatchingWorkflowInput$description": "<p>A description of the workflow.</p>",
        "CreateMatchingWorkflowOutput$description": "<p>A description of the workflow.</p>",
        "CreateSchemaMappingInput$description": "<p>A description of the schema.</p>",
        "CreateSchemaMappingOutput$description": "<p>A description of the schema.</p>",
        "GetIdMappingWorkflowOutput$description": "<p>A description of the workflow.</p>",
        "GetMatchingWorkflowOutput$description": "<p>A description of the workflow.</p>",
        "GetSchemaMappingOutput$description": "<p>A description of the schema.</p>",
        "UpdateIdMappingWorkflowInput$description": "<p>A description of the workflow.</p>",
        "UpdateIdMappingWorkflowOutput$description": "<p>A description of the workflow.</p>",
        "UpdateMatchingWorkflowInput$description": "<p>A description of the workflow.</p>",
        "UpdateMatchingWorkflowOutput$description": "<p>A description of the workflow.</p>",
        "UpdateSchemaMappingInput$description": "<p>A description of the schema.</p>",
        "UpdateSchemaMappingOutput$description": "<p>A description of the schema.</p>"
      }
    },
    "Document": {
      "base": null,
      "refs": {
        "GetProviderServiceOutput$providerConfigurationDefinition": "<p>The definition of the provider configuration.</p>",
        "GetProviderServiceOutput$providerEntityOutputDefinition": "<p>The definition of the provider entity output.</p>",
        "ProviderProperties$providerConfiguration": "<p>The required configuration fields to use with the provider service.</p>"
      }
    },
    "EntityName": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowInput$workflowName": "<p>The name of the workflow. There can't be multiple <code>IdMappingWorkflows</code> with the same name.</p>",
        "CreateIdMappingWorkflowOutput$workflowName": "<p>The name of the workflow.</p>",
        "CreateMatchingWorkflowInput$workflowName": "<p>The name of the workflow. There can't be multiple <code>MatchingWorkflows</code> with the same name.</p>",
        "CreateMatchingWorkflowOutput$workflowName": "<p>The name of the workflow.</p>",
        "CreateSchemaMappingInput$schemaName": "<p>The name of the schema. There can't be multiple <code>SchemaMappings</code> with the same name.</p>",
        "CreateSchemaMappingOutput$schemaName": "<p>The name of the schema.</p>",
        "DeleteIdMappingWorkflowInput$workflowName": "<p>The name of the workflow to be deleted.</p>",
        "DeleteMatchingWorkflowInput$workflowName": "<p>The name of the workflow to be retrieved.</p>",
        "DeleteSchemaMappingInput$schemaName": "<p>The name of the schema to delete.</p>",
        "GetIdMappingJobInput$workflowName": "<p>The name of the workflow.</p>",
        "GetIdMappingWorkflowInput$workflowName": "<p>The name of the workflow.</p>",
        "GetIdMappingWorkflowOutput$workflowName": "<p>The name of the workflow.</p>",
        "GetMatchIdInput$workflowName": "<p>The name of the workflow.</p>",
        "GetMatchingJobInput$workflowName": "<p>The name of the workflow.</p>",
        "GetMatchingWorkflowInput$workflowName": "<p>The name of the workflow.</p>",
        "GetMatchingWorkflowOutput$workflowName": "<p>The name of the workflow.</p>",
        "GetProviderServiceInput$providerName": "<p>The name of the provider. This name is typically the company name.</p>",
        "GetProviderServiceOutput$providerName": "<p>The name of the provider. This name is typically the company name.</p>",
        "GetProviderServiceOutput$providerServiceName": "<p>The name of the product that the provider service provides. </p>",
        "GetSchemaMappingInput$schemaName": "<p>The name of the schema to be retrieved.</p>",
        "GetSchemaMappingOutput$schemaName": "<p>The name of the schema.</p>",
        "IdMappingWorkflowInputSource$schemaName": "<p>The name of the schema to be retrieved.</p>",
        "IdMappingWorkflowSummary$workflowName": "<p>The name of the workflow.</p>",
        "InputSource$schemaName": "<p>The name of the schema to be retrieved.</p>",
        "ListIdMappingJobsInput$workflowName": "<p>The name of the workflow to be retrieved.</p>",
        "ListMatchingJobsInput$workflowName": "<p>The name of the workflow to be retrieved.</p>",
        "ListProviderServicesInput$providerName": "<p>The name of the provider. This name is typically the company name.</p>",
        "MatchingWorkflowSummary$workflowName": "<p>The name of the workflow.</p>",
        "ProviderServiceSummary$providerName": "<p>The name of the provider. This name is typically the company name.</p>",
        "ProviderServiceSummary$providerServiceName": "<p>The name of the product that the provider service provides.</p>",
        "SchemaMappingSummary$schemaName": "<p>The name of the schema.</p>",
        "StartIdMappingJobInput$workflowName": "<p>The name of the ID mapping job to be retrieved.</p>",
        "StartMatchingJobInput$workflowName": "<p>The name of the matching job to be retrieved.</p>",
        "UpdateIdMappingWorkflowInput$workflowName": "<p>The name of the workflow.</p>",
        "UpdateIdMappingWorkflowOutput$workflowName": "<p>The name of the workflow.</p>",
        "UpdateMatchingWorkflowInput$workflowName": "<p>The name of the workflow to be retrieved.</p>",
        "UpdateMatchingWorkflowOutput$workflowName": "<p>The name of the workflow.</p>",
        "UpdateSchemaMappingInput$schemaName": "<p>The name of the schema. There can't be multiple <code>SchemaMappings</code> with the same name.</p>",
        "UpdateSchemaMappingOutput$schemaName": "<p>The name of the schema.</p>"
      }
    },
    "ErrorDetails": {
      "base": "<p>An object containing an error message, if there was an error.</p>",
      "refs": {
        "GetIdMappingJobOutput$errorDetails": null,
        "GetMatchingJobOutput$errorDetails": "<p>An object containing an error message, if there was an error.</p>"
      }
    },
    "ErrorMessage": {
      "base": null,
      "refs": {
        "AccessDeniedException$message": null,
        "ConflictException$message": null,
        "ErrorDetails$errorMessage": "<p>The error message from the job, if there is one.</p>",
        "ExceedsLimitException$message": null,
        "InternalServerException$message": null,
        "ResourceNotFoundException$message": null,
        "ThrottlingException$message": null,
        "ValidationException$message": null
      }
    },
    "ExceedsLimitException": {
      "base": "<p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits. The error message describes the limit exceeded. <code>HTTP Status Code: 402</code> </p>",
      "refs": {
      }
    },
    "GetIdMappingJobInput": {
      "base": null,
      "refs": {
      }
    },
    "GetIdMappingJobOutput": {
      "base": null,
      "refs": {
      }
    },
    "GetIdMappingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "GetIdMappingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "GetMatchIdInput": {
      "base": null,
      "refs": {
      }
    },
    "GetMatchIdOutput": {
      "base": null,
      "refs": {
      }
    },
    "GetMatchingJobInput": {
      "base": null,
      "refs": {
      }
    },
    "GetMatchingJobOutput": {
      "base": null,
      "refs": {
      }
    },
    "GetMatchingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "GetMatchingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "GetProviderServiceInput": {
      "base": null,
      "refs": {
      }
    },
    "GetProviderServiceOutput": {
      "base": null,
      "refs": {
      }
    },
    "GetSchemaMappingInput": {
      "base": null,
      "refs": {
      }
    },
    "GetSchemaMappingOutput": {
      "base": null,
      "refs": {
      }
    },
    "IdMappingJobMetrics": {
      "base": "<p>An object containing <code>InputRecords</code>, <code>TotalRecordsProcessed</code>, <code>MatchIDs</code>, and <code>RecordsNotProcessed</code>.</p>",
      "refs": {
        "GetIdMappingJobOutput$metrics": "<p>Metrics associated with the execution, specifically total records processed, unique IDs generated, and records the execution skipped.</p>"
      }
    },
    "IdMappingTechniques": {
      "base": "<p>An object which defines the ID mapping techniques and provider configurations.</p>",
      "refs": {
        "CreateIdMappingWorkflowInput$idMappingTechniques": "<p>An object which defines the <code>idMappingType</code> and the <code>providerProperties</code>.</p>",
        "CreateIdMappingWorkflowOutput$idMappingTechniques": "<p>An object which defines the <code>idMappingType</code> and the <code>providerProperties</code>.</p>",
        "GetIdMappingWorkflowOutput$idMappingTechniques": "<p>An object which defines the <code>idMappingType</code> and the <code>providerProperties</code>.</p>",
        "UpdateIdMappingWorkflowInput$idMappingTechniques": "<p>An object which defines the <code>idMappingType</code> and the <code>providerProperties</code>.</p>",
        "UpdateIdMappingWorkflowOutput$idMappingTechniques": "<p>An object which defines the <code>idMappingType</code> and the <code>providerProperties</code>.</p>"
      }
    },
    "IdMappingType": {
      "base": null,
      "refs": {
        "IdMappingTechniques$idMappingType": "<p>The type of ID mapping.</p>"
      }
    },
    "IdMappingWorkflowArn": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowOutput$workflowArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IDMappingWorkflow</code>.</p>",
        "GetIdMappingWorkflowOutput$workflowArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IdMappingWorkflow</code> .</p>",
        "IdMappingWorkflowSummary$workflowArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IdMappingWorkflow</code>.</p>",
        "UpdateIdMappingWorkflowOutput$workflowArn": "<p>The Amazon Resource Name (ARN) of the workflow role. Entity Resolution assumes this role to access resources on your behalf.</p>"
      }
    },
    "IdMappingWorkflowInputSource": {
      "base": "<p>An object containing <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
      "refs": {
        "IdMappingWorkflowInputSourceConfig$member": null
      }
    },
    "IdMappingWorkflowInputSourceConfig": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowInput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "CreateIdMappingWorkflowOutput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "GetIdMappingWorkflowOutput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "UpdateIdMappingWorkflowInput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "UpdateIdMappingWorkflowOutput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>"
      }
    },
    "IdMappingWorkflowInputSourceInputSourceARNString": {
      "base": null,
      "refs": {
        "IdMappingWorkflowInputSource$inputSourceARN": "<p>An Gluetable ARN for the input source table.</p>"
      }
    },
    "IdMappingWorkflowList": {
      "base": null,
      "refs": {
        "ListIdMappingWorkflowsOutput$workflowSummaries": "<p>A list of <code>IdMappingWorkflowSummary</code> objects.</p>"
      }
    },
    "IdMappingWorkflowOutputSource": {
      "base": "<p>The output source for the ID mapping workflow.</p>",
      "refs": {
        "IdMappingWorkflowOutputSourceConfig$member": null
      }
    },
    "IdMappingWorkflowOutputSourceConfig": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowInput$outputSourceConfig": "<p>A list of <code>IdMappingWorkflowOutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>Output</code>.</p>",
        "CreateIdMappingWorkflowOutput$outputSourceConfig": "<p>A list of <code>IdMappingWorkflowOutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>Output</code>.</p>",
        "GetIdMappingWorkflowOutput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>KMSArn</code>.</p>",
        "UpdateIdMappingWorkflowInput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>KMSArn</code>.</p>",
        "UpdateIdMappingWorkflowOutput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>KMSArn</code>.</p>"
      }
    },
    "IdMappingWorkflowSummary": {
      "base": "<p>A list of <code>IdMappingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and <code>UpdatedAt</code>.</p>",
      "refs": {
        "IdMappingWorkflowList$member": null
      }
    },
    "IncrementalRunConfig": {
      "base": "<p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>",
      "refs": {
        "CreateMatchingWorkflowInput$incrementalRunConfig": "<p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>",
        "CreateMatchingWorkflowOutput$incrementalRunConfig": "<p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>",
        "GetMatchingWorkflowOutput$incrementalRunConfig": "<p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>",
        "UpdateMatchingWorkflowInput$incrementalRunConfig": "<p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>",
        "UpdateMatchingWorkflowOutput$incrementalRunConfig": "<p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>"
      }
    },
    "IncrementalRunType": {
      "base": null,
      "refs": {
        "IncrementalRunConfig$incrementalRunType": "<p>The type of incremental run. It takes only one value: <code>IMMEDIATE</code>.</p>"
      }
    },
    "InputSource": {
      "base": "<p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and <code>ApplyNormalization</code>.</p>",
      "refs": {
        "InputSourceConfig$member": null
      }
    },
    "InputSourceConfig": {
      "base": null,
      "refs": {
        "CreateMatchingWorkflowInput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "CreateMatchingWorkflowOutput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "GetMatchingWorkflowOutput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "UpdateMatchingWorkflowInput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>",
        "UpdateMatchingWorkflowOutput$inputSourceConfig": "<p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>"
      }
    },
    "InputSourceInputSourceARNString": {
      "base": null,
      "refs": {
        "InputSource$inputSourceARN": "<p>An Glue table ARN for the input source table.</p>"
      }
    },
    "Integer": {
      "base": null,
      "refs": {
        "ExceedsLimitException$quotaValue": "<p>The current quota value for the customers.</p>",
        "IdMappingJobMetrics$inputRecords": "<p>The total number of input records.</p>",
        "IdMappingJobMetrics$recordsNotProcessed": "<p>The total number of records that did not get processed.</p>",
        "IdMappingJobMetrics$totalRecordsProcessed": "<p>The total number of records processed.</p>",
        "JobMetrics$inputRecords": "<p>The total number of input records.</p>",
        "JobMetrics$matchIDs": "<p>The total number of <code>matchID</code>s generated.</p>",
        "JobMetrics$recordsNotProcessed": "<p>The total number of records that did not get processed.</p>",
        "JobMetrics$totalRecordsProcessed": "<p>The total number of records processed.</p>"
      }
    },
    "IntermediateSourceConfiguration": {
      "base": "<p>The Amazon S3 location that temporarily stores your data while it processes. Your information won't be saved permanently.</p>",
      "refs": {
        "ProviderProperties$intermediateSourceConfiguration": "<p>The Amazon S3 location that temporarily stores your data while it processes. Your information won't be saved permanently.</p>"
      }
    },
    "InternalServerException": {
      "base": "<p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code> </p>",
      "refs": {
      }
    },
    "JobId": {
      "base": null,
      "refs": {
        "GetIdMappingJobInput$jobId": "<p>The ID of the job.</p>",
        "GetIdMappingJobOutput$jobId": "<p>The ID of the job.</p>",
        "GetMatchingJobInput$jobId": "<p>The ID of the job.</p>",
        "GetMatchingJobOutput$jobId": "<p>The ID of the job.</p>",
        "JobSummary$jobId": "<p>The ID of the job.</p>",
        "StartIdMappingJobOutput$jobId": "<p>The ID of the job.</p>",
        "StartMatchingJobOutput$jobId": "<p>The ID of the job.</p>"
      }
    },
    "JobList": {
      "base": null,
      "refs": {
        "ListIdMappingJobsOutput$jobs": "<p>A list of <code>JobSummary</code> objects.</p>",
        "ListMatchingJobsOutput$jobs": "<p>A list of <code>JobSummary</code> objects, each of which contain the ID, status, start time, and end time of a job.</p>"
      }
    },
    "JobMetrics": {
      "base": "<p>An object containing <code>InputRecords</code>, <code>TotalRecordsProcessed</code>, <code>MatchIDs</code>, and <code>RecordsNotProcessed</code>.</p>",
      "refs": {
        "GetMatchingJobOutput$metrics": "<p>Metrics associated with the execution, specifically total records processed, unique IDs generated, and records the execution skipped.</p>"
      }
    },
    "JobStatus": {
      "base": null,
      "refs": {
        "GetIdMappingJobOutput$status": "<p>The current status of the job.</p>",
        "GetMatchingJobOutput$status": "<p>The current status of the job.</p>",
        "JobSummary$status": "<p>The current status of the job.</p>"
      }
    },
    "JobSummary": {
      "base": "<p>An object containing the <code>JobId</code>, <code>Status</code>, <code>StartTime</code>, and <code>EndTime</code> of a job.</p>",
      "refs": {
        "JobList$member": null
      }
    },
    "KMSArn": {
      "base": null,
      "refs": {
        "IdMappingWorkflowOutputSource$KMSArn": "<p>Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.</p>",
        "OutputSource$KMSArn": "<p>Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.</p>"
      }
    },
    "ListIdMappingJobsInput": {
      "base": null,
      "refs": {
      }
    },
    "ListIdMappingJobsInputMaxResultsInteger": {
      "base": null,
      "refs": {
        "ListIdMappingJobsInput$maxResults": "<p>The maximum number of objects returned per page.</p>"
      }
    },
    "ListIdMappingJobsOutput": {
      "base": null,
      "refs": {
      }
    },
    "ListIdMappingWorkflowsInput": {
      "base": null,
      "refs": {
      }
    },
    "ListIdMappingWorkflowsInputMaxResultsInteger": {
      "base": null,
      "refs": {
        "ListIdMappingWorkflowsInput$maxResults": "<p>The maximum number of objects returned per page.</p>"
      }
    },
    "ListIdMappingWorkflowsOutput": {
      "base": null,
      "refs": {
      }
    },
    "ListMatchingJobsInput": {
      "base": null,
      "refs": {
      }
    },
    "ListMatchingJobsInputMaxResultsInteger": {
      "base": null,
      "refs": {
        "ListMatchingJobsInput$maxResults": "<p>The maximum number of objects returned per page.</p>"
      }
    },
    "ListMatchingJobsOutput": {
      "base": null,
      "refs": {
      }
    },
    "ListMatchingWorkflowsInput": {
      "base": null,
      "refs": {
      }
    },
    "ListMatchingWorkflowsInputMaxResultsInteger": {
      "base": null,
      "refs": {
        "ListMatchingWorkflowsInput$maxResults": "<p>The maximum number of objects returned per page.</p>"
      }
    },
    "ListMatchingWorkflowsOutput": {
      "base": null,
      "refs": {
      }
    },
    "ListProviderServicesInput": {
      "base": null,
      "refs": {
      }
    },
    "ListProviderServicesInputMaxResultsInteger": {
      "base": null,
      "refs": {
        "ListProviderServicesInput$maxResults": "<p>The maximum number of objects returned per page.</p>"
      }
    },
    "ListProviderServicesOutput": {
      "base": null,
      "refs": {
      }
    },
    "ListSchemaMappingsInput": {
      "base": null,
      "refs": {
      }
    },
    "ListSchemaMappingsInputMaxResultsInteger": {
      "base": null,
      "refs": {
        "ListSchemaMappingsInput$maxResults": "<p>The maximum number of objects returned per page.</p>"
      }
    },
    "ListSchemaMappingsOutput": {
      "base": null,
      "refs": {
      }
    },
    "ListTagsForResourceInput": {
      "base": null,
      "refs": {
      }
    },
    "ListTagsForResourceOutput": {
      "base": null,
      "refs": {
      }
    },
    "MatchingWorkflowArn": {
      "base": null,
      "refs": {
        "CreateMatchingWorkflowOutput$workflowArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>",
        "GetMatchingWorkflowOutput$workflowArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>",
        "MatchingWorkflowSummary$workflowArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>"
      }
    },
    "MatchingWorkflowList": {
      "base": null,
      "refs": {
        "ListMatchingWorkflowsOutput$workflowSummaries": "<p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and <code>UpdatedAt</code>.</p>"
      }
    },
    "MatchingWorkflowSummary": {
      "base": "<p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, <code>UpdatedAt</code>.</p>",
      "refs": {
        "MatchingWorkflowList$member": null
      }
    },
    "NextToken": {
      "base": null,
      "refs": {
        "ListIdMappingJobsInput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListIdMappingJobsOutput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListIdMappingWorkflowsInput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListIdMappingWorkflowsOutput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListMatchingJobsInput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListMatchingJobsOutput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListMatchingWorkflowsInput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListMatchingWorkflowsOutput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListProviderServicesInput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListProviderServicesOutput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListSchemaMappingsInput$nextToken": "<p>The pagination token from the previous API call.</p>",
        "ListSchemaMappingsOutput$nextToken": "<p>The pagination token from the previous API call.</p>"
      }
    },
    "OutputAttribute": {
      "base": "<p>A list of <code>OutputAttribute</code> objects, each of which have the fields <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.</p>",
      "refs": {
        "OutputSourceOutputList$member": null
      }
    },
    "OutputSource": {
      "base": "<p>A list of <code>OutputAttribute</code> objects, each of which have the fields <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.</p>",
      "refs": {
        "OutputSourceConfig$member": null
      }
    },
    "OutputSourceConfig": {
      "base": null,
      "refs": {
        "CreateMatchingWorkflowInput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>",
        "CreateMatchingWorkflowOutput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>",
        "GetMatchingWorkflowOutput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>",
        "UpdateMatchingWorkflowInput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>",
        "UpdateMatchingWorkflowOutput$outputSourceConfig": "<p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>"
      }
    },
    "OutputSourceOutputList": {
      "base": null,
      "refs": {
        "OutputSource$output": "<p>A list of <code>OutputAttribute</code> objects, each of which have the fields <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.</p>"
      }
    },
    "ProviderEndpointConfiguration": {
      "base": "<p>The required configuration fields to use with the provider service.</p>",
      "refs": {
        "GetProviderServiceOutput$providerEndpointConfiguration": "<p>The required configuration fields to use with the provider service.</p>"
      }
    },
    "ProviderIntermediateDataAccessConfiguration": {
      "base": "<p>The required configuration fields to give intermediate access to a provider service.</p>",
      "refs": {
        "GetProviderServiceOutput$providerIntermediateDataAccessConfiguration": "<p>The Amazon Web Services accounts and the S3 permissions that are required by some providers to create an S3 bucket for intermediate data storage.</p>"
      }
    },
    "ProviderMarketplaceConfiguration": {
      "base": "<p>The identifiers of the provider service, from Data Exchange.</p>",
      "refs": {
        "ProviderEndpointConfiguration$marketplaceConfiguration": "<p>The identifiers of the provider service, from Data Exchange.</p>"
      }
    },
    "ProviderProperties": {
      "base": "<p>An object containing the <code>providerServiceARN</code>, <code>intermediateSourceConfiguration</code>, and <code>providerConfiguration</code>.</p>",
      "refs": {
        "IdMappingTechniques$providerProperties": "<p>An object which defines any additional configurations required by the provider service.</p>",
        "ResolutionTechniques$providerProperties": "<p>The properties of the provider service.</p>"
      }
    },
    "ProviderServiceArn": {
      "base": null,
      "refs": {
        "GetProviderServiceInput$providerServiceName": "<p>The ARN (Amazon Resource Name) of the product that the provider service provides.</p>",
        "GetProviderServiceOutput$providerServiceArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the provider service.</p>",
        "ProviderProperties$providerServiceArn": "<p>The ARN of the provider service.</p>",
        "ProviderServiceSummary$providerServiceArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>providerService</code>.</p>"
      }
    },
    "ProviderServiceDisplayName": {
      "base": null,
      "refs": {
        "GetProviderServiceOutput$providerServiceDisplayName": "<p>The display name of the provider service.</p>",
        "ProviderServiceSummary$providerServiceDisplayName": "<p>The display name of the provider service.</p>"
      }
    },
    "ProviderServiceList": {
      "base": null,
      "refs": {
        "ListProviderServicesOutput$providerServiceSummaries": "<p>A list of <code>ProviderServices</code> objects.</p>"
      }
    },
    "ProviderServiceSummary": {
      "base": "<p>A list of <code>ProviderService</code> objects, each of which contain the fields <code>providerName</code>, <code>providerServiceArn</code>, <code>providerServiceName</code>, and <code>providerServiceType</code>.</p>",
      "refs": {
        "ProviderServiceList$member": null
      }
    },
    "RecordAttributeMap": {
      "base": null,
      "refs": {
        "GetMatchIdInput$record": "<p>The record to fetch the Match ID for.</p>"
      }
    },
    "RecordAttributeMapKeyString": {
      "base": null,
      "refs": {
        "RecordAttributeMap$key": null
      }
    },
    "RecordAttributeMapValueString": {
      "base": null,
      "refs": {
        "RecordAttributeMap$value": null
      }
    },
    "RequiredBucketActionsList": {
      "base": null,
      "refs": {
        "ProviderIntermediateDataAccessConfiguration$requiredBucketActions": "<p>The S3 bucket actions that the provider requires permission for.</p>"
      }
    },
    "ResolutionTechniques": {
      "base": "<p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>",
      "refs": {
        "CreateMatchingWorkflowInput$resolutionTechniques": "<p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>",
        "CreateMatchingWorkflowOutput$resolutionTechniques": "<p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>",
        "GetMatchingWorkflowOutput$resolutionTechniques": "<p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>",
        "UpdateMatchingWorkflowInput$resolutionTechniques": "<p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>",
        "UpdateMatchingWorkflowOutput$resolutionTechniques": "<p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code> </p>"
      }
    },
    "ResolutionType": {
      "base": null,
      "refs": {
        "MatchingWorkflowSummary$resolutionType": "<p>The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.</p>",
        "ResolutionTechniques$resolutionType": "<p>The type of matching. There are two types of matching: <code>RULE_MATCHING</code> and <code>ML_MATCHING</code>.</p>"
      }
    },
    "ResourceNotFoundException": {
      "base": "<p>The resource could not be found. <code>HTTP Status Code: 404</code> </p>",
      "refs": {
      }
    },
    "RoleArn": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowInput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>",
        "CreateIdMappingWorkflowOutput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>",
        "GetIdMappingWorkflowOutput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access resources on your behalf.</p>",
        "UpdateIdMappingWorkflowInput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access resources on your behalf.</p>",
        "UpdateIdMappingWorkflowOutput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access resources on your behalf.</p>"
      }
    },
    "Rule": {
      "base": "<p>An object containing <code>RuleName</code>, and <code>MatchingKeys</code>.</p>",
      "refs": {
        "RuleBasedPropertiesRulesList$member": null
      }
    },
    "RuleBasedProperties": {
      "base": "<p>An object which defines the list of matching rules to run and has a field <code>Rules</code>, which is a list of rule objects.</p>",
      "refs": {
        "ResolutionTechniques$ruleBasedProperties": "<p>An object which defines the list of matching rules to run and has a field <code>Rules</code>, which is a list of rule objects.</p>"
      }
    },
    "RuleBasedPropertiesRulesList": {
      "base": null,
      "refs": {
        "RuleBasedProperties$rules": "<p>A list of <code>Rule</code> objects, each of which have fields <code>RuleName</code> and <code>MatchingKeys</code>.</p>"
      }
    },
    "RuleMatchingKeysList": {
      "base": null,
      "refs": {
        "Rule$matchingKeys": "<p>A list of <code>MatchingKeys</code>. The <code>MatchingKeys</code> must have been defined in the <code>SchemaMapping</code>. Two records are considered to match according to this rule if all of the <code>MatchingKeys</code> match.</p>"
      }
    },
    "RuleRuleNameString": {
      "base": null,
      "refs": {
        "Rule$ruleName": "<p>A name for the matching rule.</p>"
      }
    },
    "S3Path": {
      "base": null,
      "refs": {
        "IdMappingWorkflowOutputSource$outputS3Path": "<p>The S3 path to which Entity Resolution will write the output table.</p>",
        "IntermediateSourceConfiguration$intermediateS3Path": "<p>The Amazon S3 location (bucket and prefix). For example: <code>s3://provider_bucket/DOC-EXAMPLE-BUCKET</code> </p>",
        "OutputSource$outputS3Path": "<p>The S3 path to which Entity Resolution will write the output table.</p>"
      }
    },
    "SchemaAttributeType": {
      "base": null,
      "refs": {
        "SchemaInputAttribute$type": "<p>The type of the attribute, selected from a list of values.</p>"
      }
    },
    "SchemaInputAttribute": {
      "base": "<p>An object containing <code>FieldName</code>, <code>Type</code>, <code>GroupName</code>, and <code>MatchKey</code>.</p>",
      "refs": {
        "SchemaInputAttributes$member": null
      }
    },
    "SchemaInputAttributes": {
      "base": null,
      "refs": {
        "CreateSchemaMappingInput$mappedInputFields": "<p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>",
        "CreateSchemaMappingOutput$mappedInputFields": "<p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>",
        "GetSchemaMappingOutput$mappedInputFields": "<p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information Venice uses for matching.</p>",
        "UpdateSchemaMappingInput$mappedInputFields": "<p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>",
        "UpdateSchemaMappingOutput$mappedInputFields": "<p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>"
      }
    },
    "SchemaMappingArn": {
      "base": null,
      "refs": {
        "CreateSchemaMappingOutput$schemaArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>.</p>",
        "GetSchemaMappingOutput$schemaArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.</p>",
        "SchemaMappingSummary$schemaArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>.</p>",
        "UpdateSchemaMappingOutput$schemaArn": "<p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>.</p>"
      }
    },
    "SchemaMappingList": {
      "base": null,
      "refs": {
        "ListSchemaMappingsOutput$schemaList": "<p>A list of <code>SchemaMappingSummary</code> objects, each of which contain the fields <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>, <code>UpdatedAt</code>.</p>"
      }
    },
    "SchemaMappingSummary": {
      "base": "<p>An object containing <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>, and<code>UpdatedAt</code>.</p>",
      "refs": {
        "SchemaMappingList$member": null
      }
    },
    "ServiceType": {
      "base": null,
      "refs": {
        "GetProviderServiceOutput$providerServiceType": "<p>The type of provider service.</p>",
        "ProviderServiceSummary$providerServiceType": "<p>The type of provider service.</p>"
      }
    },
    "StartIdMappingJobInput": {
      "base": null,
      "refs": {
      }
    },
    "StartIdMappingJobOutput": {
      "base": null,
      "refs": {
      }
    },
    "StartMatchingJobInput": {
      "base": null,
      "refs": {
      }
    },
    "StartMatchingJobOutput": {
      "base": null,
      "refs": {
      }
    },
    "String": {
      "base": null,
      "refs": {
        "CreateMatchingWorkflowInput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>",
        "CreateMatchingWorkflowOutput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>",
        "DeleteIdMappingWorkflowOutput$message": "<p>A successful operation message.</p>",
        "DeleteMatchingWorkflowOutput$message": "<p>A successful operation message.</p>",
        "DeleteSchemaMappingOutput$message": "<p>A successful operation message.</p>",
        "ExceedsLimitException$quotaName": "<p>The name of the quota that has been breached.</p>",
        "GetMatchIdOutput$matchId": "<p>The unique identifiers for this group of match records.</p>",
        "GetMatchingWorkflowOutput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access resources on your behalf.</p>",
        "ProviderMarketplaceConfiguration$assetId": "<p>The asset ID on Data Exchange.</p>",
        "ProviderMarketplaceConfiguration$dataSetId": "<p>The dataset ID on Data Exchange.</p>",
        "ProviderMarketplaceConfiguration$listingId": "<p>The listing ID on Data Exchange.</p>",
        "ProviderMarketplaceConfiguration$revisionId": "<p>The revision ID on Data Exchange.</p>",
        "RequiredBucketActionsList$member": null,
        "UpdateMatchingWorkflowInput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>",
        "UpdateMatchingWorkflowOutput$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>"
      }
    },
    "TagKey": {
      "base": null,
      "refs": {
        "TagKeyList$member": null,
        "TagMap$key": null
      }
    },
    "TagKeyList": {
      "base": null,
      "refs": {
        "UntagResourceInput$tagKeys": "<p>The list of tag keys to remove from the resource.</p>"
      }
    },
    "TagMap": {
      "base": null,
      "refs": {
        "CreateIdMappingWorkflowInput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "CreateMatchingWorkflowInput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "CreateSchemaMappingInput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "GetIdMappingWorkflowOutput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "GetMatchingWorkflowOutput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "GetSchemaMappingOutput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "ListTagsForResourceOutput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>",
        "TagResourceInput$tags": "<p>The tags used to organize, track, or control access for this resource.</p>"
      }
    },
    "TagResourceInput": {
      "base": null,
      "refs": {
      }
    },
    "TagResourceOutput": {
      "base": null,
      "refs": {
      }
    },
    "TagValue": {
      "base": null,
      "refs": {
        "TagMap$value": null
      }
    },
    "ThrottlingException": {
      "base": "<p>The request was denied due to request throttling. <code>HTTP Status Code: 429</code> </p>",
      "refs": {
      }
    },
    "Timestamp": {
      "base": null,
      "refs": {
        "GetIdMappingJobOutput$endTime": "<p>The time at which the job has finished.</p>",
        "GetIdMappingJobOutput$startTime": "<p>The time at which the job was started.</p>",
        "GetIdMappingWorkflowOutput$createdAt": "<p>The timestamp of when the workflow was created.</p>",
        "GetIdMappingWorkflowOutput$updatedAt": "<p>The timestamp of when the workflow was last updated.</p>",
        "GetMatchingJobOutput$endTime": "<p>The time at which the job has finished.</p>",
        "GetMatchingJobOutput$startTime": "<p>The time at which the job was started.</p>",
        "GetMatchingWorkflowOutput$createdAt": "<p>The timestamp of when the workflow was created.</p>",
        "GetMatchingWorkflowOutput$updatedAt": "<p>The timestamp of when the workflow was last updated.</p>",
        "GetSchemaMappingOutput$createdAt": "<p>The timestamp of when the <code>SchemaMapping</code> was created.</p>",
        "GetSchemaMappingOutput$updatedAt": "<p>The timestamp of when the <code>SchemaMapping</code> was last updated.</p>",
        "IdMappingWorkflowSummary$createdAt": "<p>The timestamp of when the workflow was created.</p>",
        "IdMappingWorkflowSummary$updatedAt": "<p>The timestamp of when the workflow was last updated.</p>",
        "JobSummary$endTime": "<p>The time at which the job has finished.</p>",
        "JobSummary$startTime": "<p>The time at which the job was started.</p>",
        "MatchingWorkflowSummary$createdAt": "<p>The timestamp of when the workflow was created.</p>",
        "MatchingWorkflowSummary$updatedAt": "<p>The timestamp of when the workflow was last updated.</p>",
        "SchemaMappingSummary$createdAt": "<p>The timestamp of when the <code>SchemaMapping</code> was created.</p>",
        "SchemaMappingSummary$updatedAt": "<p>The timestamp of when the <code>SchemaMapping</code> was last updated.</p>"
      }
    },
    "UntagResourceInput": {
      "base": null,
      "refs": {
      }
    },
    "UntagResourceOutput": {
      "base": null,
      "refs": {
      }
    },
    "UpdateIdMappingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "UpdateIdMappingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "UpdateMatchingWorkflowInput": {
      "base": null,
      "refs": {
      }
    },
    "UpdateMatchingWorkflowOutput": {
      "base": null,
      "refs": {
      }
    },
    "UpdateSchemaMappingInput": {
      "base": null,
      "refs": {
      }
    },
    "UpdateSchemaMappingOutput": {
      "base": null,
      "refs": {
      }
    },
    "ValidationException": {
      "base": "<p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code> </p>",
      "refs": {
      }
    },
    "VeniceGlobalArn": {
      "base": null,
      "refs": {
        "ListTagsForResourceInput$resourceArn": "<p>The ARN of the resource for which you want to view tags.</p>",
        "TagResourceInput$resourceArn": "<p>The ARN of the resource for which you want to view tags.</p>",
        "UntagResourceInput$resourceArn": "<p>The ARN of the resource for which you want to untag.</p>"
      }
    }
  }
}
