Interface CfnIdNamespace.IdNamespaceInputSourceProperty

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

@Stability(Stable) public static interface CfnIdNamespace.IdNamespaceInputSourceProperty extends software.amazon.jsii.JsiiSerializable
An object containing InputSourceARN and SchemaName .

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.*;
 IdNamespaceInputSourceProperty idNamespaceInputSourceProperty = IdNamespaceInputSourceProperty.builder()
         .inputSourceArn("inputSourceArn")
         // the properties below are optional
         .schemaName("schemaName")
         .build();
 

See Also: