'2.0', 'service' => '

Welcome to the AWS Entity Resolution API Reference.

AWS Entity Resolution is an AWS 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.

With AWS Entity Resolution, you have the ability to match source records containing consumer identifiers, such as name, email address, and phone number. This holds true even when these records have incomplete or conflicting identifiers. For example, AWS Entity Resolution can effectively match a source record from a customer relationship management (CRM) system, which includes account information like first name, last name, postal address, phone number, and email address, with a source record from a marketing system containing campaign information, such as username and email address.

To learn more about AWS Entity Resolution concepts, procedures, and best practices, see the AWS Entity Resolution User Guide.

', 'operations' => [ 'CreateMatchingWorkflow' => '

Creates a MatchingWorkflow 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 MatchingWorkflow with the same name. To modify an existing workflow, utilize the UpdateMatchingWorkflow API.

', 'CreateSchemaMapping' => '

Creates a schema mapping, which defines the schema of the input customer records table. The SchemaMapping also provides Entity Resolution with some metadata about the table, such as the attribute types of the columns and which columns to match on.

', 'DeleteMatchingWorkflow' => '

Deletes the MatchingWorkflow with a given name. This operation will succeed even if a workflow with the given name does not exist.

', 'DeleteSchemaMapping' => '

Deletes the SchemaMapping 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 DataIntegrationWorkflow object that references the SchemaMapping in the workflow\'s InputSourceConfig.

', 'GetMatchId' => '

Returns the corresponding Match ID of a customer record if the record has been processed.

', 'GetMatchingJob' => '

Gets the status, metrics, and errors (if there are any) that are associated with a job.

', 'GetMatchingWorkflow' => '

Returns the MatchingWorkflow with a given name, if it exists.

', 'GetSchemaMapping' => '

Returns the SchemaMapping of a given name.

', 'ListMatchingJobs' => '

Lists all jobs for a given workflow.

', 'ListMatchingWorkflows' => '

Returns a list of all the MatchingWorkflows that have been created for an AWS account.

', 'ListSchemaMappings' => '

Returns a list of all the SchemaMappings that have been created for an AWS account.

', 'ListTagsForResource' => '

Displays the tags associated with an AWS Entity Resolution resource. In Entity Resolution, SchemaMapping, and MatchingWorkflow can be tagged.

', 'StartMatchingJob' => '

Starts the MatchingJob of a workflow. The workflow must have previously been created using the CreateMatchingWorkflow endpoint.

', 'TagResource' => '

Assigns one or more tags (key-value pairs) to the specified AWS 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, SchemaMapping, and MatchingWorkflow can be tagged. Tags don\'t have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can use the TagResource 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.

', 'UntagResource' => '

Removes one or more tags from the specified AWS Entity Resolution resource. In Entity Resolution, SchemaMapping, and MatchingWorkflow can be tagged.

', 'UpdateMatchingWorkflow' => '

Updates an existing MatchingWorkflow. This method is identical to CreateMatchingWorkflow, except it uses an HTTP PUT request instead of a POST request, and the MatchingWorkflow must already exist for the method to succeed.

', ], 'shapes' => [ 'AccessDeniedException' => [ 'base' => '

You do not have sufficient access to perform this action. HTTP Status Code: 403

', 'refs' => [], ], 'AttributeMatchingModel' => [ 'base' => NULL, 'refs' => [ 'RuleBasedProperties$attributeMatchingModel' => '

You can either choose ONE_TO_ONE or MANY_TO_MANY as the AttributeMatchingModel. When choosing MANY_TO_MANY, the system can match attribute across the sub-types of an attribute type. For example, if the value of the Email field of Profile A and the value of BusinessEmail field of Profile B matches, the two profiles are matched on the Email type. When choosing ONE_TO_ONE the system can only match if the sub-types are exact matches. For example, only when the value of the Email field of Profile A and the value of the Email field of Profile B matches, the two profiles are matched on the Email type.

', ], ], 'AttributeName' => [ 'base' => NULL, 'refs' => [ 'OutputAttribute$name' => '

A name of a column to be written to the output. This must be an InputField name in the schema mapping.

', 'RuleMatchingKeysList$member' => NULL, 'SchemaInputAttribute$fieldName' => '

A string containing the field name.

', 'SchemaInputAttribute$groupName' => '

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 GroupName will prompt Entity Resolution to concatenate them into a single value.

', 'SchemaInputAttribute$matchKey' => '

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 business_address and shipping_address. By assigning the MatchKey Address\' to both attributes, Entity Resolution will match records across these fields to create a consolidated matching group. If no MatchKey is specified for a column, it won\'t be utilized for matching purposes but will still be included in the output table.

', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'InputSource$applyNormalization' => '

Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType of PHONE_NUMBER, 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.

', 'OutputAttribute$hashed' => '

Enables the ability to hash the column values in the output.

', 'OutputSource$applyNormalization' => '

Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType of PHONE_NUMBER, 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.

', ], ], 'ConflictException' => [ 'base' => '

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. HTTP Status Code: 400

', 'refs' => [], ], 'CreateMatchingWorkflowInput' => [ 'base' => NULL, 'refs' => [], ], 'CreateMatchingWorkflowOutput' => [ 'base' => NULL, 'refs' => [], ], 'CreateSchemaMappingInput' => [ 'base' => NULL, 'refs' => [], ], 'CreateSchemaMappingOutput' => [ 'base' => NULL, 'refs' => [], ], 'DeleteMatchingWorkflowInput' => [ 'base' => NULL, 'refs' => [], ], 'DeleteMatchingWorkflowOutput' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSchemaMappingInput' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSchemaMappingOutput' => [ 'base' => NULL, 'refs' => [], ], 'Description' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowInput$description' => '

A description of the workflow.

', 'CreateMatchingWorkflowOutput$description' => '

A description of the workflow.

', 'CreateSchemaMappingInput$description' => '

A description of the schema.

', 'CreateSchemaMappingOutput$description' => '

A description of the schema.

', 'GetMatchingWorkflowOutput$description' => '

A description of the workflow.

', 'GetSchemaMappingOutput$description' => '

A description of the schema.

', 'UpdateMatchingWorkflowInput$description' => '

A description of the workflow.

', 'UpdateMatchingWorkflowOutput$description' => '

A description of the workflow.

', ], ], 'EntityName' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowInput$workflowName' => '

The name of the workflow. There cannot be multiple DataIntegrationWorkflows with the same name.

', 'CreateMatchingWorkflowOutput$workflowName' => '

The name of the workflow.

', 'CreateSchemaMappingInput$schemaName' => '

The name of the schema. There cannot be multiple SchemaMappings with the same name.

', 'CreateSchemaMappingOutput$schemaName' => '

The name of the schema.

', 'DeleteMatchingWorkflowInput$workflowName' => '

The name of the workflow to be retrieved.

', 'DeleteSchemaMappingInput$schemaName' => '

The name of the schema to delete.

', 'GetMatchIdInput$workflowName' => '

The name of the workflow.

', 'GetMatchingJobInput$workflowName' => '

The name of the workflow.

', 'GetMatchingWorkflowInput$workflowName' => '

The name of the workflow.

', 'GetMatchingWorkflowOutput$workflowName' => '

The name of the workflow.

', 'GetSchemaMappingInput$schemaName' => '

The name of the schema to be retrieved.

', 'GetSchemaMappingOutput$schemaName' => '

The name of the schema.

', 'InputSource$schemaName' => '

The name of the schema to be retrieved.

', 'ListMatchingJobsInput$workflowName' => '

The name of the workflow to be retrieved.

', 'MatchingWorkflowSummary$workflowName' => '

The name of the workflow.

', 'SchemaMappingSummary$schemaName' => '

The name of the schema.

', 'StartMatchingJobInput$workflowName' => '

The name of the matching job to be retrieved.

', 'UpdateMatchingWorkflowInput$workflowName' => '

The name of the workflow to be retrieved.

', 'UpdateMatchingWorkflowOutput$workflowName' => '

The name of the workflow.

', ], ], 'ErrorDetails' => [ 'base' => '

An object containing an error message, if there was an error.

', 'refs' => [ 'GetMatchingJobOutput$errorDetails' => '

An object containing an error message, if there was an error.

', ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'AccessDeniedException$message' => NULL, 'ConflictException$message' => NULL, 'ErrorDetails$errorMessage' => '

The error message from the job, if there is one.

', 'ExceedsLimitException$message' => NULL, 'InternalServerException$message' => NULL, 'ResourceNotFoundException$message' => NULL, 'ThrottlingException$message' => NULL, 'ValidationException$message' => NULL, ], ], 'ExceedsLimitException' => [ 'base' => '

The request was rejected because it attempted to create resources beyond the current AWS Entity Resolution account limits. The error message describes the limit exceeded. HTTP Status Code: 402

', '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' => [], ], 'GetSchemaMappingInput' => [ 'base' => NULL, 'refs' => [], ], 'GetSchemaMappingOutput' => [ 'base' => NULL, 'refs' => [], ], 'IncrementalRunConfig' => [ 'base' => '

An object which defines an incremental run type and has only incrementalRunType as a field.

', 'refs' => [ 'CreateMatchingWorkflowInput$incrementalRunConfig' => '

An object which defines an incremental run type and has only incrementalRunType as a field.

', 'CreateMatchingWorkflowOutput$incrementalRunConfig' => '

An object which defines an incremental run type and has only incrementalRunType as a field.

', 'GetMatchingWorkflowOutput$incrementalRunConfig' => '

An object which defines an incremental run type and has only incrementalRunType as a field.

', 'UpdateMatchingWorkflowInput$incrementalRunConfig' => '

An object which defines an incremental run type and has only incrementalRunType as a field.

', 'UpdateMatchingWorkflowOutput$incrementalRunConfig' => '

An object which defines an incremental run type and has only incrementalRunType as a field.

', ], ], 'IncrementalRunType' => [ 'base' => NULL, 'refs' => [ 'IncrementalRunConfig$incrementalRunType' => '

The type of incremental run. It takes only one value: IMMEDIATE.

', ], ], 'InputSource' => [ 'base' => '

An object containing InputSourceARN, SchemaName, and ApplyNormalization.

', 'refs' => [ 'InputSourceConfig$member' => NULL, ], ], 'InputSourceConfig' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowInput$inputSourceConfig' => '

A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

', 'CreateMatchingWorkflowOutput$inputSourceConfig' => '

A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

', 'GetMatchingWorkflowOutput$inputSourceConfig' => '

A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

', 'UpdateMatchingWorkflowInput$inputSourceConfig' => '

A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

', 'UpdateMatchingWorkflowOutput$inputSourceConfig' => '

A list of InputSource objects, which have the fields InputSourceARN and SchemaName.

', ], ], 'InputSourceInputSourceARNString' => [ 'base' => NULL, 'refs' => [ 'InputSource$inputSourceARN' => '

An Glue table ARN for the input source table.

', ], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'JobMetrics$inputRecords' => '

The total number of input records.

', 'JobMetrics$matchIDs' => '

The total number of matchIDs generated.

', 'JobMetrics$recordsNotProcessed' => '

The total number of records that did not get processed,

', 'JobMetrics$totalRecordsProcessed' => '

The total number of records processed.

', ], ], 'InternalServerException' => [ 'base' => '

This exception occurs when there is an internal failure in the AWS Entity Resolution service. HTTP Status Code: 500

', 'refs' => [], ], 'JobId' => [ 'base' => NULL, 'refs' => [ 'GetMatchingJobInput$jobId' => '

The ID of the job.

', 'GetMatchingJobOutput$jobId' => '

The ID of the job.

', 'JobSummary$jobId' => '

The ID of the job.

', 'StartMatchingJobOutput$jobId' => '

The ID of the job.

', ], ], 'JobList' => [ 'base' => NULL, 'refs' => [ 'ListMatchingJobsOutput$jobs' => '

A list of JobSummary objects, each of which contain the ID, status, start time, and end time of a job.

', ], ], 'JobMetrics' => [ 'base' => '

An object containing InputRecords, TotalRecordsProcessed, MatchIDs, and RecordsNotProcessed.

', 'refs' => [ 'GetMatchingJobOutput$metrics' => '

Metrics associated with the execution, specifically total records processed, unique IDs generated, and records the execution skipped.

', ], ], 'JobStatus' => [ 'base' => NULL, 'refs' => [ 'GetMatchingJobOutput$status' => '

The current status of the job. Either running, succeeded, queued, or failed.

', 'JobSummary$status' => '

The current status of the job. Either running, succeeded, queued, or failed.

', ], ], 'JobSummary' => [ 'base' => '

An object containing the JobId, Status, StartTime, and EndTime of a job.

', 'refs' => [ 'JobList$member' => NULL, ], ], 'KMSArn' => [ 'base' => NULL, 'refs' => [ 'OutputSource$KMSArn' => '

Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.

', ], ], 'ListMatchingJobsInput' => [ 'base' => NULL, 'refs' => [], ], 'ListMatchingJobsInputMaxResultsInteger' => [ 'base' => NULL, 'refs' => [ 'ListMatchingJobsInput$maxResults' => '

The maximum number of objects returned per page.

', ], ], 'ListMatchingJobsOutput' => [ 'base' => NULL, 'refs' => [], ], 'ListMatchingWorkflowsInput' => [ 'base' => NULL, 'refs' => [], ], 'ListMatchingWorkflowsInputMaxResultsInteger' => [ 'base' => NULL, 'refs' => [ 'ListMatchingWorkflowsInput$maxResults' => '

The maximum number of objects returned per page.

', ], ], 'ListMatchingWorkflowsOutput' => [ 'base' => NULL, 'refs' => [], ], 'ListSchemaMappingsInput' => [ 'base' => NULL, 'refs' => [], ], 'ListSchemaMappingsInputMaxResultsInteger' => [ 'base' => NULL, 'refs' => [ 'ListSchemaMappingsInput$maxResults' => '

The maximum number of objects returned per page.

', ], ], 'ListSchemaMappingsOutput' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceInput' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceOutput' => [ 'base' => NULL, 'refs' => [], ], 'MatchingWorkflowArn' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowOutput$workflowArn' => '

The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow.

', 'GetMatchingWorkflowOutput$workflowArn' => '

The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow.

', 'MatchingWorkflowSummary$workflowArn' => '

The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow.

', ], ], 'MatchingWorkflowList' => [ 'base' => NULL, 'refs' => [ 'ListMatchingWorkflowsOutput$workflowSummaries' => '

A list of MatchingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, and UpdatedAt.

', ], ], 'MatchingWorkflowSummary' => [ 'base' => '

A list of MatchingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, UpdatedAt.

', 'refs' => [ 'MatchingWorkflowList$member' => NULL, ], ], 'NextToken' => [ 'base' => NULL, 'refs' => [ 'ListMatchingJobsInput$nextToken' => '

The pagination token from the previous ListSchemaMappings API call.

', 'ListMatchingJobsOutput$nextToken' => '

The pagination token from the previous ListSchemaMappings API call.

', 'ListMatchingWorkflowsInput$nextToken' => '

The pagination token from the previous ListSchemaMappings API call.

', 'ListMatchingWorkflowsOutput$nextToken' => '

The pagination token from the previous ListSchemaMappings API call.

', 'ListSchemaMappingsInput$nextToken' => '

The pagination token from the previous ListSchemaMappings API call.

', 'ListSchemaMappingsOutput$nextToken' => '

The pagination token from the previous ListDomains API call.

', ], ], 'OutputAttribute' => [ 'base' => '

A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

', 'refs' => [ 'OutputSourceOutputList$member' => NULL, ], ], 'OutputSource' => [ 'base' => '

A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

', 'refs' => [ 'OutputSourceConfig$member' => NULL, ], ], 'OutputSourceConfig' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowInput$outputSourceConfig' => '

A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output.

', 'CreateMatchingWorkflowOutput$outputSourceConfig' => '

A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output.

', 'GetMatchingWorkflowOutput$outputSourceConfig' => '

A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output.

', 'UpdateMatchingWorkflowInput$outputSourceConfig' => '

A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output.

', 'UpdateMatchingWorkflowOutput$outputSourceConfig' => '

A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output.

', ], ], 'OutputSourceOutputList' => [ 'base' => NULL, 'refs' => [ 'OutputSource$output' => '

A list of OutputAttribute objects, each of which have the fields Name and Hashed. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.

', ], ], 'OutputSourceOutputS3PathString' => [ 'base' => NULL, 'refs' => [ 'OutputSource$outputS3Path' => '

The S3 path to which Entity Resolution will write the output table.

', ], ], 'RecordAttributeMap' => [ 'base' => NULL, 'refs' => [ 'GetMatchIdInput$record' => '

The record to fetch the Match ID for.

', ], ], 'RecordAttributeMapKeyString' => [ 'base' => NULL, 'refs' => [ 'RecordAttributeMap$key' => NULL, ], ], 'RecordAttributeMapValueString' => [ 'base' => NULL, 'refs' => [ 'RecordAttributeMap$value' => NULL, ], ], 'ResolutionTechniques' => [ 'base' => '

An object which defines the resolutionType and the ruleBasedProperties

', 'refs' => [ 'CreateMatchingWorkflowInput$resolutionTechniques' => '

An object which defines the resolutionType and the ruleBasedProperties

', 'CreateMatchingWorkflowOutput$resolutionTechniques' => '

An object which defines the resolutionType and the ruleBasedProperties

', 'GetMatchingWorkflowOutput$resolutionTechniques' => '

An object which defines the resolutionType and the ruleBasedProperties

', 'UpdateMatchingWorkflowInput$resolutionTechniques' => '

An object which defines the resolutionType and the ruleBasedProperties

', 'UpdateMatchingWorkflowOutput$resolutionTechniques' => '

An object which defines the resolutionType and the ruleBasedProperties

', ], ], 'ResolutionType' => [ 'base' => NULL, 'refs' => [ 'ResolutionTechniques$resolutionType' => '

There are two types of matching, RULE_MATCHING and ML_MATCHING

', ], ], 'ResourceNotFoundException' => [ 'base' => '

The resource could not be found. HTTP Status Code: 404

', 'refs' => [], ], 'Rule' => [ 'base' => '

An object containing RuleName, and MatchingKeys.

', 'refs' => [ 'RuleBasedPropertiesRulesList$member' => NULL, ], ], 'RuleBasedProperties' => [ 'base' => '

An object which defines the list of matching rules to run and has a field Rules, which is a list of rule objects.

', 'refs' => [ 'ResolutionTechniques$ruleBasedProperties' => '

An object which defines the list of matching rules to run and has a field Rules, which is a list of rule objects.

', ], ], 'RuleBasedPropertiesRulesList' => [ 'base' => NULL, 'refs' => [ 'RuleBasedProperties$rules' => '

A list of Rule objects, each of which have fields RuleName and MatchingKeys.

', ], ], 'RuleMatchingKeysList' => [ 'base' => NULL, 'refs' => [ 'Rule$matchingKeys' => '

A list of MatchingKeys. The MatchingKeys must have been defined in the SchemaMapping. Two records are considered to match according to this rule if all of the MatchingKeys match.

', ], ], 'RuleRuleNameString' => [ 'base' => NULL, 'refs' => [ 'Rule$ruleName' => '

A name for the matching rule.

', ], ], 'SchemaAttributeType' => [ 'base' => NULL, 'refs' => [ 'SchemaInputAttribute$type' => '

The type of the attribute, selected from a list of values.

', ], ], 'SchemaInputAttribute' => [ 'base' => '

An object containing FieldField, Type, GroupName, and MatchKey.

', 'refs' => [ 'SchemaInputAttributes$member' => NULL, ], ], 'SchemaInputAttributes' => [ 'base' => NULL, 'refs' => [ 'CreateSchemaMappingInput$mappedInputFields' => '

A list of MappedInputFields. Each MappedInputField corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.

', 'CreateSchemaMappingOutput$mappedInputFields' => '

A list of MappedInputFields. Each MappedInputField corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.

', 'GetSchemaMappingOutput$mappedInputFields' => '

A list of MappedInputFields. Each MappedInputField corresponds to a column the source data table, and contains column name plus additional information Venice uses for matching.

', ], ], 'SchemaMappingArn' => [ 'base' => NULL, 'refs' => [ 'CreateSchemaMappingOutput$schemaArn' => '

The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.

', 'GetSchemaMappingOutput$schemaArn' => '

The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.

', 'SchemaMappingSummary$schemaArn' => '

The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.

', ], ], 'SchemaMappingList' => [ 'base' => NULL, 'refs' => [ 'ListSchemaMappingsOutput$schemaList' => '

A list of SchemaMappingSummary objects, each of which contain the fields SchemaName, SchemaArn, CreatedAt, UpdatedAt.

', ], ], 'SchemaMappingSummary' => [ 'base' => '

An object containing SchemaName, SchemaArn, CreatedAt, andUpdatedAt.

', 'refs' => [ 'SchemaMappingList$member' => NULL, ], ], 'StartMatchingJobInput' => [ 'base' => NULL, 'refs' => [], ], 'StartMatchingJobOutput' => [ 'base' => NULL, 'refs' => [], ], 'String' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowInput$roleArn' => '

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.

', 'CreateMatchingWorkflowOutput$roleArn' => '

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.

', 'DeleteMatchingWorkflowOutput$message' => '

A successful operation message.

', 'DeleteSchemaMappingOutput$message' => '

A successful operation message.

', 'GetMatchIdOutput$matchId' => '

The unique identifiers for this group of match records.

', 'GetMatchingWorkflowOutput$roleArn' => '

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to access resources on your behalf.

', 'UpdateMatchingWorkflowInput$roleArn' => '

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.

', 'UpdateMatchingWorkflowOutput$roleArn' => '

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.

', ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'TagKeyList$member' => NULL, 'TagMap$key' => NULL, ], ], 'TagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceInput$tagKeys' => '

The list of tag keys to remove from the resource.

', ], ], 'TagMap' => [ 'base' => NULL, 'refs' => [ 'CreateMatchingWorkflowInput$tags' => '

The tags used to organize, track, or control access for this resource.

', 'CreateSchemaMappingInput$tags' => '

The tags used to organize, track, or control access for this resource.

', 'GetMatchingWorkflowOutput$tags' => '

The tags used to organize, track, or control access for this resource.

', 'GetSchemaMappingOutput$tags' => '

The tags used to organize, track, or control access for this resource.

', 'ListTagsForResourceOutput$tags' => '

The tags used to organize, track, or control access for this resource.

', 'TagResourceInput$tags' => '

The tags used to organize, track, or control access for this resource.

', ], ], 'TagResourceInput' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceOutput' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'TagMap$value' => NULL, ], ], 'ThrottlingException' => [ 'base' => '

The request was denied due to request throttling. HTTP Status Code: 429

', 'refs' => [], ], 'Timestamp' => [ 'base' => NULL, 'refs' => [ 'GetMatchingJobOutput$endTime' => '

The time at which the job has finished.

', 'GetMatchingJobOutput$startTime' => '

The time at which the job was started.

', 'GetMatchingWorkflowOutput$createdAt' => '

The timestamp of when the workflow was created.

', 'GetMatchingWorkflowOutput$updatedAt' => '

The timestamp of when the workflow was last updated.

', 'GetSchemaMappingOutput$createdAt' => '

The timestamp of when the SchemaMapping was created.

', 'GetSchemaMappingOutput$updatedAt' => '

The timestamp of when the SchemaMapping was last updated.

', 'JobSummary$endTime' => '

The time at which the job has finished.

', 'JobSummary$startTime' => '

The time at which the job was started.

', 'MatchingWorkflowSummary$createdAt' => '

The timestamp of when the workflow was created.

', 'MatchingWorkflowSummary$updatedAt' => '

The timestamp of when the workflow was last updated.

', 'SchemaMappingSummary$createdAt' => '

The timestamp of when the SchemaMapping was created.

', 'SchemaMappingSummary$updatedAt' => '

The timestamp of when the SchemaMapping was last updated.

', ], ], 'UntagResourceInput' => [ 'base' => NULL, 'refs' => [], ], 'UntagResourceOutput' => [ 'base' => NULL, 'refs' => [], ], 'UpdateMatchingWorkflowInput' => [ 'base' => NULL, 'refs' => [], ], 'UpdateMatchingWorkflowOutput' => [ 'base' => NULL, 'refs' => [], ], 'ValidationException' => [ 'base' => '

The input fails to satisfy the constraints specified by AWS Entity Resolution. HTTP Status Code: 400

', 'refs' => [], ], 'VeniceGlobalArn' => [ 'base' => NULL, 'refs' => [ 'ListTagsForResourceInput$resourceArn' => '

The ARN of the resource for which you want to view tags.

', 'TagResourceInput$resourceArn' => '

The ARN of the resource for which you want to view tags.

', 'UntagResourceInput$resourceArn' => '

The ARN of the resource for which you want to untag.

', ], ], ],];