Interface CfnTable.OpenTableFormatInputProperty

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

@Stability(Stable) public static interface CfnTable.OpenTableFormatInputProperty extends software.amazon.jsii.JsiiSerializable
Specifies an OpenTableFormatInput structure when creating an open format 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.glue.*;
 OpenTableFormatInputProperty openTableFormatInputProperty = OpenTableFormatInputProperty.builder()
         .icebergInput(IcebergInputProperty.builder()
                 .metadataOperation("metadataOperation")
                 .version("version")
                 .build())
         .build();
 

See Also: