Interface CfnDataSource.GlueRunConfigurationInputProperty

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

@Stability(Stable) public static interface CfnDataSource.GlueRunConfigurationInputProperty extends software.amazon.jsii.JsiiSerializable
The configuration details of the AWS Glue data source.

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.datazone.*;
 GlueRunConfigurationInputProperty glueRunConfigurationInputProperty = GlueRunConfigurationInputProperty.builder()
         .relationalFilterConfigurations(List.of(RelationalFilterConfigurationProperty.builder()
                 .databaseName("databaseName")
                 // the properties below are optional
                 .filterExpressions(List.of(FilterExpressionProperty.builder()
                         .expression("expression")
                         .type("type")
                         .build()))
                 .schemaName("schemaName")
                 .build()))
         // the properties below are optional
         .autoImportDataQualityResult(false)
         .dataAccessRole("dataAccessRole")
         .build();
 

See Also: