Interface SchemaChangePlannedForDataSet.SchemaChange

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

@Stability(Experimental) public static interface SchemaChangePlannedForDataSet.SchemaChange extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for SchemaChange.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.dataexchange.events.*;
 SchemaChange schemaChange = SchemaChange.builder()
         .changes(List.of(SchemaChangeItem.builder()
                 .description(List.of("description"))
                 .name(List.of("name"))
                 .type(List.of("type"))
                 .build()))
         .schemaChangeAt(List.of("schemaChangeAt"))
         .build();
 
  • Method Details