Interface SchemaChangePlannedForDataSet.Details

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

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

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.*;
 Details details = Details.builder()
         .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())
         .build();