Interface CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty.Jsii$Proxy
- Enclosing class:
CfnIdMappingWorkflow
@Stability(Stable)
public static interface CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty
extends software.amazon.jsii.JsiiSerializable
An object containing
inputSourceARN , schemaName , and type .
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.*;
IdMappingWorkflowInputSourceProperty idMappingWorkflowInputSourceProperty = IdMappingWorkflowInputSourceProperty.builder()
.inputSourceArn("inputSourceArn")
// the properties below are optional
.schemaArn("schemaArn")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.default StringThe ARN (Amazon Resource Name) that AWS Entity Resolution generated for theSchemaMapping.default StringgetType()The type of ID namespace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputSourceArn
An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.- See Also:
-
getSchemaArn
The ARN (Amazon Resource Name) that AWS Entity Resolution generated for theSchemaMapping.- See Also:
-
getType
The type of ID namespace. There are two types:SOURCEandTARGET.The
SOURCEcontains configurations forsourceIddata that will be processed in an ID mapping workflow.The
TARGETcontains a configuration oftargetIdwhich allsourceIdswill resolve to.- See Also:
-
builder
@Stability(Stable) static CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty.Builder builder()
-