interface IdMappingWorkflowOutputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdMappingWorkflowPropsMixin_IdMappingWorkflowOutputSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdMappingWorkflowPropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const idMappingWorkflowOutputSourceProperty: entityresolution_mixins.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty = {
kmsArn: 'kmsArn',
outputS3Path: 'outputS3Path',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | Customer AWS ARN for encryption at rest. |
| output | 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.
outputS3Path?
Type:
string
(optional)
The S3 path to which AWS Entity Resolution will write the output table.

.NET
Go
Java
Python
TypeScript