EntityResolution / Client / list_schema_mappings
list_schema_mappings¶
- EntityResolution.Client.list_schema_mappings(**kwargs)¶
Returns a list of all the
SchemaMappings
that have been created for an Amazon Web Services account.See also: AWS API Documentation
Request Syntax
response = client.list_schema_mappings( nextToken='string', maxResults=123 )
- Parameters:
nextToken (string) – The pagination token from the previous API call.
maxResults (integer) – The maximum number of objects returned per page.
- Return type:
dict
- Returns:
Response Syntax
{ 'schemaList': [ { 'schemaName': 'string', 'schemaArn': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1), 'hasWorkflows': True|False }, ], 'nextToken': 'string' }
Response Structure
(dict) –
schemaList (list) –
A list of
SchemaMappingSummary
objects, each of which contain the fieldsSchemaName
,SchemaArn
,CreatedAt
,UpdatedAt
.(dict) –
An object containing
SchemaName
,SchemaArn
,CreatedAt
, andUpdatedAt
.schemaName (string) –
The name of the schema.
schemaArn (string) –
The ARN (Amazon Resource Name) that Entity Resolution generated for the
SchemaMapping
.createdAt (datetime) –
The timestamp of when the
SchemaMapping
was created.updatedAt (datetime) –
The timestamp of when the
SchemaMapping
was last updated.hasWorkflows (boolean) –
Specifies whether the schema mapping has been applied to a workflow.
nextToken (string) –
The pagination token from the previous API call.
Exceptions