interface IdMappingWorkflowOutputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EntityResolution.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsentityresolution#CfnIdMappingWorkflowPropsMixin_IdMappingWorkflowOutputSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.entityresolution.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_entityresolution.CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowOutputSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_entityresolution » 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 { aws_entityresolution as entityresolution } from '@aws-cdk/cfn-property-mixins';
const idMappingWorkflowOutputSourceProperty: entityresolution.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