Interface CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty.Jsii$Proxy
- Enclosing class:
CfnIdMappingWorkflowPropsMixin
@Stability(Stable)
public static interface CfnIdMappingWorkflowPropsMixin.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.cfnpropertymixins.services.entityresolution.*;
IdMappingWorkflowInputSourceProperty idMappingWorkflowInputSourceProperty = IdMappingWorkflowInputSourceProperty.builder()
.inputSourceArn("inputSourceArn")
.schemaArn("schemaArn")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn 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 CfnIdMappingWorkflowPropsMixin.IdMappingWorkflowInputSourceProperty.Builder builder()
-