Interface CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty.Jsii$Proxy
- Enclosing class:
- CfnIdMappingWorkflow
@Stability(Stable)
public static interface CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.entityresolution.*;
 IdMappingWorkflowOutputSourceProperty idMappingWorkflowOutputSourceProperty = IdMappingWorkflowOutputSourceProperty.builder()
         .outputS3Path("outputS3Path")
         // the properties below are optional
         .kmsArn("kmsArn")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getOutputS3PathThe S3 path to which AWS Entity Resolution will write the output table.- See Also:
 
- 
getKmsArnCustomer AWS KMS ARN for encryption at rest.If not provided, system will use an AWS Entity Resolution managed KMS key. - See Also:
 
- 
builder@Stability(Stable) static CfnIdMappingWorkflow.IdMappingWorkflowOutputSourceProperty.Builder builder()
 
-