Interface Column

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
Column.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.532Z") @Stability(Experimental) public interface Column extends software.amazon.jsii.JsiiSerializable
(experimental) A column of a 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.*;
 Column column = Column.builder()
         .name("name")
         .type(Type.builder()
                 .inputString("inputString")
                 .isPrimitive(false)
                 .build())
         // the properties below are optional
         .comment("comment")
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for Column
    static final class 
    An implementation for Column
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default String
    (experimental) Coment describing the column.
    (experimental) Name of the column.
    (experimental) Type of the column.

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Method Details

    • getName

      @Stability(Experimental) @NotNull String getName()
      (experimental) Name of the column.
    • getType

      @Stability(Experimental) @NotNull Type getType()
      (experimental) Type of the column.
    • getComment

      @Stability(Experimental) @Nullable default String getComment()
      (experimental) Coment describing the column.

      Default: none

    • builder

      @Stability(Experimental) static Column.Builder builder()
      Returns:
      a Column.Builder of Column