Interface CfnTable.ViewDefinitionProperty

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

@Stability(Stable) public static interface CfnTable.ViewDefinitionProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 ViewDefinitionProperty viewDefinitionProperty = ViewDefinitionProperty.builder()
         .definer("definer")
         .isProtected(false)
         .representations(List.of(ViewRepresentationProperty.builder()
                 .dialect("dialect")
                 .dialectVersion("dialectVersion")
                 .validationConnection("validationConnection")
                 .viewExpandedText("viewExpandedText")
                 .viewOriginalText("viewOriginalText")
                 .build()))
         .subObjects(List.of("subObjects"))
         .build();
 

See Also: