Interface CfnSchemaMapping.SchemaInputAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSchemaMapping.SchemaInputAttributeProperty.Jsii$Proxy
Enclosing class:
CfnSchemaMapping

@Stability(Stable) public static interface CfnSchemaMapping.SchemaInputAttributeProperty extends software.amazon.jsii.JsiiSerializable
An object containing FieldName , Type , GroupName , MatchKey , and SubType .

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.*;
 SchemaInputAttributeProperty schemaInputAttributeProperty = SchemaInputAttributeProperty.builder()
         .fieldName("fieldName")
         .type("type")
         // the properties below are optional
         .groupName("groupName")
         .matchKey("matchKey")
         .subType("subType")
         .build();
 

See Also: