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
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An 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 String
The ARN (Amazon Resource Name) that AWS Entity Resolution generated for theSchemaMapping
.default String
getType()
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:SOURCE
andTARGET
.The
SOURCE
contains configurations forsourceId
data that will be processed in an ID mapping workflow.The
TARGET
contains a configuration oftargetId
which allsourceIds
will resolve to.- See Also:
-
builder
@Stability(Stable) static CfnIdMappingWorkflow.IdMappingWorkflowInputSourceProperty.Builder builder()
-