EntityResolutionClient#
Index > EntityResolution > EntityResolutionClient
Auto-generated documentation for EntityResolution type annotations stubs module mypy-boto3-entityresolution.
EntityResolutionClient#
Type annotations and code completion for boto3.client("entityresolution")
.
boto3 documentation
# EntityResolutionClient usage example
from boto3.session import Session
from mypy_boto3_entityresolution.client import EntityResolutionClient
def get_entityresolution_client() -> EntityResolutionClient:
return Session().client("entityresolution")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("entityresolution").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("entityresolution")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.ExceedsLimitException,
client.exceptions.InternalServerException,
client.exceptions.ResourceNotFoundException,
client.exceptions.ThrottlingException,
client.exceptions.ValidationException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_entityresolution.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
add_policy_statement#
Adds a policy statement object.
Type annotations and code completion for boto3.client("entityresolution").add_policy_statement
method.
boto3 documentation
# add_policy_statement method definition
def add_policy_statement(
self,
*,
action: Sequence[str],
arn: str,
effect: StatementEffectType, # (1)
principal: Sequence[str],
statementId: str,
condition: str = ...,
) -> AddPolicyStatementOutputTypeDef: # (2)
...
# add_policy_statement method usage example with argument unpacking
kwargs: AddPolicyStatementInputRequestTypeDef = { # (1)
"action": ...,
"arn": ...,
"effect": ...,
"principal": ...,
"statementId": ...,
}
parent.add_policy_statement(**kwargs)
batch_delete_unique_id#
Deletes multiple unique IDs in a matching workflow.
Type annotations and code completion for boto3.client("entityresolution").batch_delete_unique_id
method.
boto3 documentation
# batch_delete_unique_id method definition
def batch_delete_unique_id(
self,
*,
uniqueIds: Sequence[str],
workflowName: str,
inputSource: str = ...,
) -> BatchDeleteUniqueIdOutputTypeDef: # (1)
...
# batch_delete_unique_id method usage example with argument unpacking
kwargs: BatchDeleteUniqueIdInputRequestTypeDef = { # (1)
"uniqueIds": ...,
"workflowName": ...,
}
parent.batch_delete_unique_id(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("entityresolution").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("entityresolution").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_id_mapping_workflow#
Creates an IdMappingWorkflow
object which stores the configuration of the
data processing job to be
run.
Type annotations and code completion for boto3.client("entityresolution").create_id_mapping_workflow
method.
boto3 documentation
# create_id_mapping_workflow method definition
def create_id_mapping_workflow(
self,
*,
idMappingTechniques: Union[IdMappingTechniquesTypeDef, IdMappingTechniquesOutputTypeDef], # (1)
inputSourceConfig: Sequence[IdMappingWorkflowInputSourceTypeDef], # (2)
workflowName: str,
description: str = ...,
outputSourceConfig: Sequence[IdMappingWorkflowOutputSourceTypeDef] = ..., # (3)
roleArn: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateIdMappingWorkflowOutputTypeDef: # (4)
...
- See IdMappingTechniquesTypeDef IdMappingTechniquesOutputTypeDef
- See IdMappingWorkflowInputSourceTypeDef
- See IdMappingWorkflowOutputSourceTypeDef
- See CreateIdMappingWorkflowOutputTypeDef
# create_id_mapping_workflow method usage example with argument unpacking
kwargs: CreateIdMappingWorkflowInputRequestTypeDef = { # (1)
"idMappingTechniques": ...,
"inputSourceConfig": ...,
"workflowName": ...,
}
parent.create_id_mapping_workflow(**kwargs)
create_id_namespace#
Creates an ID namespace object which will help customers provide metadata explaining their dataset and how to use it.
Type annotations and code completion for boto3.client("entityresolution").create_id_namespace
method.
boto3 documentation
# create_id_namespace method definition
def create_id_namespace(
self,
*,
idNamespaceName: str,
type: IdNamespaceTypeType, # (1)
description: str = ...,
idMappingWorkflowProperties: Sequence[Union[IdNamespaceIdMappingWorkflowPropertiesTypeDef, IdNamespaceIdMappingWorkflowPropertiesOutputTypeDef]] = ..., # (2)
inputSourceConfig: Sequence[IdNamespaceInputSourceTypeDef] = ..., # (3)
roleArn: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateIdNamespaceOutputTypeDef: # (4)
...
- See IdNamespaceTypeType
- See IdNamespaceIdMappingWorkflowPropertiesTypeDef IdNamespaceIdMappingWorkflowPropertiesOutputTypeDef
- See IdNamespaceInputSourceTypeDef
- See CreateIdNamespaceOutputTypeDef
# create_id_namespace method usage example with argument unpacking
kwargs: CreateIdNamespaceInputRequestTypeDef = { # (1)
"idNamespaceName": ...,
"type": ...,
}
parent.create_id_namespace(**kwargs)