Interface CfnIdMappingTable.IdMappingTableInputReferencePropertiesProperty

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

@Stability(Stable) public static interface CfnIdMappingTable.IdMappingTableInputReferencePropertiesProperty extends software.amazon.jsii.JsiiSerializable
The input reference properties for the ID mapping table.

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.cleanrooms.*;
 IdMappingTableInputReferencePropertiesProperty idMappingTableInputReferencePropertiesProperty = IdMappingTableInputReferencePropertiesProperty.builder()
         .idMappingTableInputSource(List.of(IdMappingTableInputSourceProperty.builder()
                 .idNamespaceAssociationId("idNamespaceAssociationId")
                 .type("type")
                 .build()))
         .build();
 

See Also: