interface IdMappingWorkflowOutputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EntityResolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnIdMappingWorkflow_IdMappingWorkflowOutputSourceProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty |
Python | aws_cdk.aws_entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnIdMappingWorkflow » IdMappingWorkflowOutputSourceProperty |
A list of IdMappingWorkflowOutputSource objects, each of which contains fields outputS3Path and KMSArn .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const idMappingWorkflowOutputSourceProperty: entityresolution.CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty = {
outputS3Path: 'outputS3Path',
// the properties below are optional
kmsArn: 'kmsArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| output | string | The S3 path to which AWS Entity Resolution will write the output table. |
| kms | string | Customer AWS ARN for encryption at rest. |
outputS3Path
Type:
string
The S3 path to which AWS Entity Resolution will write the output table.
kmsArn?
Type:
string
(optional)
Customer AWS ARN for encryption at rest.
If not provided, system will use an AWS Entity Resolution managed KMS key.

.NET
Go
Java
Python
TypeScript